253N/A/*
383N/A * @test /nodynamiccopyright/
253N/A * @bug 6400189
253N/A * @summary raw types and inference
253N/A * @author mcimadamore
253N/A * @compile/fail/ref=T6400189a.out T6400189a.java -Xlint:unchecked -XDrawDiagnostics
253N/A */
253N/A
253N/Aimport java.lang.reflect.Constructor;
253N/Aimport java.lang.annotation.Documented;
253N/A
253N/Aclass T6400189a {
253N/A Constructor c = null;
253N/A Documented d = c.getAnnotation(Documented.class);
253N/A}