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

/*
 * @test /nodynamiccopyright/
 * @bug 4110534
 * @summary The fix for 1240831 broke the compiler.  It should
 *          report that class Abs cannot be instantiated.
 * @author turnidge
 *
 * @compile/fail/ref=ClassIsAbstract.out -XDrawDiagnostics  ClassIsAbstract.java
 */

abstract class Abs {
}

class ClassIsAbstract {
    void method() {
        new Abs();
    }
}