mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-17 14:40:04 +07:00
IDEA-178774 Unroll loop intention action
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
// "Unroll loop" "true"
|
||||
class Test {
|
||||
void test() {
|
||||
boolean steps = {true, false};
|
||||
fo<caret>r(boolean step : steps) {
|
||||
foo(step);
|
||||
unresolved(!step);
|
||||
}
|
||||
}
|
||||
|
||||
void foo(boolean b) {}
|
||||
}
|
||||
Reference in New Issue
Block a user