blob: 8ab0b0b74ab3b5fd464aa05f672abe425b6f4889 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 7085024
* @summary internal error; cannot instantiate Foo
* @compile/fail/ref=T7085024.out -XDrawDiagnostics T7085024.java
*/
class T7085024 {
T7085024 (boolean ret) { } //internal error goes away if constructor accepts a reference type
T7085024 f = new T7085024((NonExistentClass) null );
}