summaryrefslogtreecommitdiff
path: root/plugins/IntentionPowerPak/test/com/siyeh/ipp/braces/remove/IfElse2.java
blob: 9815cdf830e4c0d01d144fa5b6223c79fdcb1625 (plain)
1
2
3
4
5
6
7
8
9
10
class X {
  {
    if<caret> (true) {
      System.out.println();
    }
    else {
      System.out.println();
    }
  }
}