blob: 2fd9ed055acc71b091212764e96cf92a7c64ae05 [file] [log] [blame]
//file
class C {
private String s = x();
void foo() {
if (s == null) {
System.out.print("null");
}
}
}