2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2014-08-29 07:42:42 +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
|
|
|
|
*
|
2014-08-29 07:42:42 +00:00
|
|
|
* @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();
|
|
|
|
}
|
|
|
|
}
|