Files
openide/java/java-tests/testData/codeInsight/indentProvider/indentSelection_before.java
T

9 lines
141 B
Java

class A {
private void foo(boolean b) {
int x;
<selection>if (b) {
System.out.println(x);
}</selection>
}
}