mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
15 lines
240 B
Plaintext
15 lines
240 B
Plaintext
class InlineClassFinal {
|
|
void sdf(String vp) {
|
|
String v1 = vp;
|
|
Object s = new Object() {
|
|
private final String v = v1;
|
|
};
|
|
}
|
|
}
|
|
|
|
class My {
|
|
private final String v;
|
|
public My(String v) {
|
|
this.v = v;
|
|
}
|
|
} |