jdk-24/test/langtools/tools/javac/ClassIsAbstract.java

19 lines
374 B
Java
Raw Normal View History

2007-12-01 00:00:00 +00:00
/*
* @test /nodynamiccopyright/
2007-12-01 00:00:00 +00:00
* @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
2007-12-01 00:00:00 +00:00
*/
abstract class Abs {
}
class ClassIsAbstract {
void method() {
new Abs();
}
}