test/tools/javac/quid/T6999438.java

Thu, 28 Feb 2013 14:05:52 +0000

author
mcimadamore
date
Thu, 28 Feb 2013 14:05:52 +0000
changeset 1610
08782b8b03ce
parent 1042
defdd98cb7ce
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8008537: Missing method reference lookup error when unbound search finds a static method
Summary: Static-ness check should be applied after member reference resolution
Reviewed-by: jjg

jjg@752 1 /* @test /nodynamiccopyright/
jjg@752 2 * @bug 6999438
jjg@752 3 * @summary remove support for exotic identifiers from JDK 7
darcy@1042 4 * @compile/fail/ref=T6999438.out -XDrawDiagnostics T6999438.java
jjg@752 5 */
jjg@752 6
jjg@752 7 class Test {
jjg@752 8 int #"not supported";
jjg@752 9 }

mercurial