11 lines
144 B
Java
11 lines
144 B
Java
//file
|
|
class C {
|
|
private String s = x();
|
|
|
|
void foo() {
|
|
if (s == null) {
|
|
System.out.print("null");
|
|
}
|
|
}
|
|
}
|