Files
openide/java/java-tests/testData/codeInsight/indentProvider/indentSelection_before.java
2014-09-18 18:30:53 +04:00

9 lines
141 B
Java

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