mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 01:43:57 +07:00
GitOrigin-RevId: 22a46c15d8900d8a31514846755a013f6a67ad42
12 lines
263 B
Java
12 lines
263 B
Java
// "Merge nested 'if' statements" "true-preview"
|
|
|
|
class Test {
|
|
public static void main(String[] args) {
|
|
i<caret>f(args.length > 0/*comment1*/)
|
|
// comment3
|
|
if(args[/*comment2*/0].equals("foo")) {
|
|
System.out.println("oops");
|
|
}
|
|
}
|
|
}
|