langtools/test/tools/javac/8002286/T8002286.java
author sogoel
Fri, 29 Aug 2014 00:42:42 -0700
changeset 26274 02a5b23ee21c
parent 14446 88145bb2ddcd
permissions -rw-r--r--
8055074: Group 9a: golden files for tests in tools/javac dir Reviewed-by: jjg

/*
 * @test /nodynamiccopyright/
 * @bug 8002286
 * @summary Resolve should support nested resolution contexts
 * @compile/fail/ref=T8002286.out -XDrawDiagnostics T8002286.java
 */
class T8002286 {
    @Anno(nonExistent())
    static class Test { }

    @interface Anno { }
}