langtools/test/tools/javac/annotations/testCrashNestedAnnos/TestCrashNestedAnnos.java
author jfranck
Mon, 11 Nov 2013 17:26:09 +0100
changeset 21713 b3fcc9c0fea3
permissions -rw-r--r--
8027375: javac asserts on nested erroneous annotations Summary: make sure JCAnnotation trees have type != null before annotation processing Reviewed-by: jjg

/* @test /nodynamiccopyright/
 * @bug 8027375
 * @summary Test that javac doesn't assert/crash when there are what looks to
 *          be annotations nested inside erroneous annotations.
 * @compile/fail/ref=TestCrashNestedAnnos.out -XDrawDiagnostics TestCrashNestedAnnos.java
 */
public class TestCrashNestedAnnos {
    // A and B are not annotation types
    @A(@A1()) int foo() {}
    @B(@B1()) int bar() {}
}

class B {}
class B1 {}