blob: 837988d7594e2484c3a89d69aa0a380587c428e8 [file] [log] [blame]
/*
* @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);
}