Files

10 lines
172 B
Java

class T {
void test(Object a) {
if (true) {
<caret>
}
if (a != null)
System.out.println("a = " + a.toString());
}
}