mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 22:20:54 +07:00
8 lines
148 B
Java
8 lines
148 B
Java
|
|
class T {
|
|
void test(Object a) {
|
|
if (true) <caret>
|
|
if (a != null)
|
|
System.out.println("a = " + a.toString());
|
|
}
|
|
} |