blob: dbda37530a2727d23b21e7db37ea5f4889f885bc [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 4959929
* @summary unclear diagnostic for "new T()"
* @author never
*
* @compile/fail/ref=NewGeneric.out -XDrawDiagnostics NewGeneric.java
*/
public class NewGeneric {
private static class Type<T> {
Type() { T t = new T(); }
}
}