summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/fixAll/beforeAssertFalse.java
blob: 49786029f303e67375c30ffe0d82a27974756d29 (plain)
1
2
3
4
5
6
7
8
// "Fix all 'Constant conditions & exceptions' problems in file" "true"
public class Test {
  void foo2() {
    int k = 0;
    int i = 0;
    assert i <caret>!= k;
  }
}