author | hseigel |
Wed, 02 Mar 2016 23:48:41 +0000 | |
changeset 36397 | c487ced7231c |
parent 30721 | 1024d425d97e |
permissions | -rw-r--r-- |
/* * @test /nodynamiccopyright/ * @bug 4951260 * @summary compiler disallows raw call to generic constructor * @author gafter * * @compile -Werror UncheckedConstructor.java * @compile/fail/ref=UncheckedConstructor.out -XDrawDiagnostics -Werror -Xlint:unchecked UncheckedConstructor.java */ import java.util.*; class G3 { G3(Enumeration<Object> e) { } static void g() { new G3(new Enumeration() { public boolean hasMoreElements() { return false; } public Object nextElement() { return null; } }); } }