2015-12-09 13:26:56 +00:00
|
|
|
/*
|
|
|
|
* @test /nodynamiccopyright/
|
|
|
|
* @bug 7196163
|
|
|
|
* @summary Variable redeclaration inside twr block
|
|
|
|
* @compile/fail/ref=TwrVarRedeclaration.out -XDrawDiagnostics TwrVarRedeclaration.java
|
|
|
|
*/
|
|
|
|
|
|
|
|
public class TwrVarRedeclaration implements AutoCloseable {
|
|
|
|
|
2023-01-17 04:43:40 +00:00
|
|
|
public static void meth() {
|
2015-12-09 13:26:56 +00:00
|
|
|
TwrVarRedeclaration r = new TwrVarRedeclaration();
|
|
|
|
|
|
|
|
try (r) {
|
|
|
|
TwrVarRedeclaration r = new TwrVarRedeclaration();
|
|
|
|
}
|
|
|
|
|
|
|
|
try (r) {
|
|
|
|
Object r = new Object();
|
|
|
|
}
|
|
|
|
|
|
|
|
try (r) {
|
|
|
|
} catch (Exception e) {
|
|
|
|
Exception r = new Exception();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void close() {}
|
|
|
|
}
|