author | lana |
Thu, 21 Jan 2016 09:46:01 -0800 | |
changeset 35340 | 38f7386ed942 |
parent 26274 | 02a5b23ee21c |
permissions | -rw-r--r-- |
10 | 1 |
/* |
26274
02a5b23ee21c
8055074: Group 9a: golden files for tests in tools/javac dir
sogoel
parents:
5520
diff
changeset
|
2 |
* @test /nodynamiccopyright/ |
10 | 3 |
* @bug 4110534 |
4 |
* @summary The fix for 1240831 broke the compiler. It should |
|
5 |
* report that class Abs cannot be instantiated. |
|
6 |
* @author turnidge |
|
7 |
* |
|
26274
02a5b23ee21c
8055074: Group 9a: golden files for tests in tools/javac dir
sogoel
parents:
5520
diff
changeset
|
8 |
* @compile/fail/ref=ClassIsAbstract.out -XDrawDiagnostics ClassIsAbstract.java |
10 | 9 |
*/ |
10 |
||
11 |
abstract class Abs { |
|
12 |
} |
|
13 |
||
14 |
class ClassIsAbstract { |
|
15 |
void method() { |
|
16 |
new Abs(); |
|
17 |
} |
|
18 |
} |