author | jjg |
Thu, 27 Aug 2009 11:08:27 -0700 | |
changeset 3766 | 7e2df99e9223 |
parent 2511 | 1ccb94d04005 |
permissions | -rw-r--r-- |
/* * @test /nodynamiccopyright/ * @bug 6400189 * @summary raw types and inference * @author mcimadamore * @compile/fail/ref=T6400189a.out T6400189a.java -Xlint:unchecked -XDrawDiagnostics */ import java.lang.reflect.Constructor; import java.lang.annotation.Documented; class T6400189a { Constructor c = null; Documented d = c.getAnnotation(Documented.class); }