mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
12 lines
261 B
Java
12 lines
261 B
Java
// "Merge nested 'if' statements" "true-preview"
|
|
|
|
class Test {
|
|
public static void main(String[] args) {
|
|
/*comment1*/
|
|
// comment3
|
|
if (args.length > 0 && args[/*comment2*/0].equals("foo")) {
|
|
System.out.println("oops");
|
|
}
|
|
}
|
|
}
|