mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
12 lines
172 B
Java
12 lines
172 B
Java
class InlineClassFinal {
|
|
void sdf(String vp) {
|
|
Object s = new M<caret>y(vp);
|
|
}
|
|
}
|
|
|
|
class My {
|
|
private final String v;
|
|
public My(String v) {
|
|
this.v = v;
|
|
}
|
|
} |