jdk-24/test/langtools/tools/javac/8002286/T8002286.java
2017-09-12 19:03:39 +02:00

13 lines
276 B
Java

/*
* @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 { }
}