mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 18:44:38 +02:00

A set of tests using t-w-r as variable in different positive and negative constructions Reviewed-by: abuckley, darcy, jlahoda, sadayapalam
28 lines
658 B
Java
28 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() {}
|
|
}
|