jdk-24/langtools/test/tools/javac/TryWithResources/TwrVarRedeclaration.java
Sergei Pikalev 02d2bd56f3 8080641: JEP-JDK-8042880 : Implement new tests on Project Coin
A set of tests using t-w-r as variable in different positive and negative constructions

Reviewed-by: abuckley, darcy, jlahoda, sadayapalam
2015-12-09 14:26:56 +01:00

29 lines
658 B
Java

/*
* @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() {}
}