blob: 3bc4b83082ec4a54f1848a6959b0ba39937a57be [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 7196163
* @summary Variable redeclaration inside twr block
* @compile/fail/ref=TwrVarRedeclaration.out -XDrawDiagnostics TwrVarRedeclaration.java
*/
public class TwrVarRedeclaration implements AutoCloseable {
public static void main(String... args) {
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() {}
}