mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
15 lines
232 B
Java
15 lines
232 B
Java
import java.lang.String;
|
|
|
|
class A {
|
|
A(String str) {
|
|
}
|
|
|
|
public static String getVeryLongString() {
|
|
return "";
|
|
}
|
|
|
|
void foo() {
|
|
A a = new A(getVeryLongString());
|
|
A a1 = new A(getVery<caret>LongString());
|
|
}
|
|
} |