mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
21 lines
447 B
Java
21 lines
447 B
Java
// "Merge nested 'if' statements" "true-preview"
|
|
|
|
class Test {
|
|
// IDEA-179557
|
|
public static void main(String[] args) {
|
|
long abc = 0;
|
|
do {
|
|
// comment
|
|
if (abc++ == 71 && abc++ >= 999) {
|
|
System.out.println(88);
|
|
if (abc++ < 23) {
|
|
System.err.println("Log nonsense");
|
|
}
|
|
}
|
|
} while( abc++ < 7 );
|
|
if ( abc++ < 47 ) {
|
|
System.out.println(abc);
|
|
}
|
|
}
|
|
}
|