mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
24 lines
404 B
Java
24 lines
404 B
Java
class Test {
|
|
|
|
private void test(boolean val) {
|
|
TestSubject subject = new TestSubject();
|
|
boolean flag = false;
|
|
|
|
if (val != flag) {
|
|
System.out.println(val);
|
|
}
|
|
}
|
|
|
|
public static class TestSubject {
|
|
public TestSubject2 getSubject2() {
|
|
return new TestSubject2();
|
|
}
|
|
}
|
|
|
|
public static class TestSubject2 {
|
|
public boolean getVal() {
|
|
return true;
|
|
}
|
|
}
|
|
}
|