1070N/A/*
1070N/A * @test /nodynamiccopyright/
1070N/A * @bug 7085024
1070N/A * @summary internal error; cannot instantiate Foo
1070N/A * @compile/fail/ref=T7085024.out -XDrawDiagnostics T7085024.java
1070N/A */
1070N/A
1070N/Aclass T7085024 {
1070N/A T7085024 (boolean ret) { } //internal error goes away if constructor accepts a reference type
1070N/A
1070N/A T7085024 f = new T7085024((NonExistentClass) null );
1070N/A}