Files
openide/java/java-tests/testData/codeInsight/completeStatement/ForUpdateGeneration.java
Denis Zhdanov ea998911e2 IDEA-69656 Complete Current Statement: Provide support for completing 'condition' section of 'for' statement
'Update' section of 'for' statement may be smart-completed now
2011-05-16 13:39:04 +04:00

6 lines
100 B
Java

public class Foo {
void test(int i) {
for (int j = 1; j < 10<caret>) {
}
}
}