mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
18 lines
249 B
Java
18 lines
249 B
Java
import java.lang.String;
|
|
|
|
class A {
|
|
|
|
public static final String O = getVeryLongString();
|
|
|
|
A(String str) {
|
|
}
|
|
|
|
public static String getVeryLongString() {
|
|
return "";
|
|
}
|
|
|
|
void foo() {
|
|
A a = new A(O);
|
|
A a1 = new A(O);
|
|
}
|
|
} |