mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 19:21:16 +07:00
14 lines
314 B
Java
14 lines
314 B
Java
// "Unroll loop" "true-preview"
|
|
class Test {
|
|
void test(String s1, String s2, String s3) {
|
|
if ((i += s1.length()) <= 10) {
|
|
if ((i += s2.length()) <= 10) {
|
|
if ((i += s3.length()) <= 10) {
|
|
}
|
|
}
|
|
}
|
|
System.out.println(i);
|
|
}
|
|
|
|
void foo(boolean b) {}
|
|
} |