blob: a33fc0cb2d751fd6bea6d9ea4683097d446c5cdf [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 4468510
* @summary Check correct DU computation for assertions.
* @author gafter
* @compile/fail/ref=DU1.out -XDrawDiagnostics DU1.java
*/
class DU1 {
void f1() {
final int i;
try {
assert false : i=3;
} catch (AssertionError ae) {
}
i=4; // error
}
}