test/tools/javac/OverrideChecks/6400189/T6400189a.java

changeset 0
959103a6100f
child 2525
2eb010b6cb22
equal deleted inserted replaced
-1:000000000000 0:959103a6100f
1 /*
2 * @test /nodynamiccopyright/
3 * @bug 6400189
4 * @summary raw types and inference
5 * @author mcimadamore
6 * @compile/fail/ref=T6400189a.out T6400189a.java -Xlint:unchecked -XDrawDiagnostics
7 */
8
9 import java.lang.reflect.Constructor;
10 import java.lang.annotation.Documented;
11
12 class T6400189a {
13 Constructor c = null;
14 Documented d = c.getAnnotation(Documented.class);
15 }

mercurial