summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/fixAll/afterAssertFalse.java
blob: b16797331be1c9aba292594b2176f62c7c7c8dfe (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 false;
  }
}