2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2014-07-02 21:27:10 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2007-12-01 00:00:00 +00:00
|
|
|
* @bug 4468510
|
|
|
|
* @summary Check correct DU computation for assertions.
|
|
|
|
* @author gafter
|
2014-07-02 21:27:10 +00:00
|
|
|
* @compile/fail/ref=DU1.out -XDrawDiagnostics DU1.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class DU1 {
|
|
|
|
void f1() {
|
|
|
|
final int i;
|
|
|
|
try {
|
|
|
|
assert false : i=3;
|
|
|
|
} catch (AssertionError ae) {
|
|
|
|
}
|
|
|
|
i=4; // error
|
|
|
|
}
|
|
|
|
}
|