mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
12 lines
218 B
Java
12 lines
218 B
Java
// "Unroll loop" "true-preview"
|
|
class Test {
|
|
void test() {
|
|
boolean[] steps = {true, false};
|
|
fo<caret>r(boolean step : (steps)) {
|
|
foo(step);
|
|
unresolved(!step);
|
|
}
|
|
}
|
|
|
|
void foo(boolean b) {}
|
|
} |