jdk-24/test/langtools/tools/javac/assert/DU2.java

17 lines
300 B
Java
Raw Normal View History

2007-12-01 00:00:00 +00:00
/*
* @test /nodynamiccopyright/
2007-12-01 00:00:00 +00:00
* @bug 4468510
* @summary Check correct DU computation for assertions.
* @author gafter
* @compile/fail/ref=DU2.out -XDrawDiagnostics DU2.java
2007-12-01 00:00:00 +00:00
*/
class DU2 {
void f1() {
final int i;
i=5;
assert false;
i=6; // error
}
}