test/tools/javac/NonStaticFieldExpr2.java

Tue, 15 Feb 2011 11:51:04 +0000

author
mcimadamore
date
Tue, 15 Feb 2011 11:51:04 +0000
changeset 878
fa0e4e1916f4
parent 611
4172cfff05f0
child 2525
2eb010b6cb22
permissions
-rw-r--r--

7017104: improve error reporting for uncaught/undeclared exceptions from try-with-resources
Summary: twr should generate better error message when uncaught exceptions are thrown by implicit call of close() method
Reviewed-by: jjg

duke@1 1 /* @test /nodynamiccopyright/
duke@1 2 @bug 4087127 4785453
duke@1 3 @author dps
duke@1 4 @summary method: instance access through types is not allowed
duke@1 5
jjg@611 6 @compile/fail/ref=NonStaticFieldExpr2.out -XDrawDiagnostics NonStaticFieldExpr2.java
duke@1 7 */
duke@1 8
duke@1 9 class NonStaticFieldExpr2 {
duke@1 10
duke@1 11 public int x;
duke@1 12
duke@1 13 void foo () {
duke@1 14 int z = NonStaticFieldExpr2.x; // SHOULD BE ERROR
duke@1 15 }
duke@1 16 }

mercurial