mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 11:42:40 +07:00
GitOrigin-RevId: a836670753e1bb67e3bf47e686302b6d799d0c7c
12 lines
226 B
Java
12 lines
226 B
Java
// "f true" "true"
|
|
public class Test {
|
|
void foo(){
|
|
if (new boolean[]{true}[0]) {
|
|
System.out.println("hello");
|
|
} else {
|
|
System.out.println("goodbye");
|
|
}
|
|
}
|
|
void bar(){foo();}
|
|
void bar1(){foo();}
|
|
} |