langtools/test/tools/javac/7085024/T7085024.java
author sogoel
Fri, 29 Aug 2014 00:42:42 -0700
changeset 26274 02a5b23ee21c
parent 10452 c8f32009b413
permissions -rw-r--r--
8055074: Group 9a: golden files for tests in tools/javac dir Reviewed-by: jjg

/*
 * @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 );
}