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