delete assert statements when simplify (IDEA-84527)

This commit is contained in:
anna
2012-04-14 14:44:10 +02:00
parent b0f77cfdb5
commit 20b902f626
5 changed files with 43 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
// "Fix all 'Constant conditions & exceptions' problems" "true"
public class Test {
void foo2() {
int k = 0;
int i = 0;
assert false;
}
}