1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
/* @test /nodynamiccopyright/
* @bug 7196163
* @summary Verify that variable used as an operand to try-with-resources is rejected if it is not
* definitelly assigned before use and or not final or effectivelly final.
* @compile/fail/ref=TwrForVariable4.out -XDrawDiagnostics -Xlint:-options TwrForVariable4.java
*/
public class TwrForVariable4 implements AutoCloseable {
public static void main(String... args) {
TwrForVariable4 uninitialized;
try (uninitialized) {
fail("must be initialized before use");
}
uninitialized = new TwrForVariable4();
TwrForVariable4 notEffectivellyFinal1 = new TwrForVariable4();
notEffectivellyFinal1 = new TwrForVariable4();
try (notEffectivellyFinal1) {
fail("not effectivelly final");
}
TwrForVariable4 notEffectivellyFinal2 = new TwrForVariable4();
try (notEffectivellyFinal2) {
notEffectivellyFinal2 = new TwrForVariable4();
fail("not effectivelly final");
}
try (notFinal) {
fail("not final");
}
}
static TwrForVariable4 notFinal = new TwrForVariable4();
static void fail(String reason) {
throw new RuntimeException(reason);
}
public void close() {
}
}
|