author | mcimadamore |
Wed, 26 Oct 2016 15:41:25 +0100 | |
changeset 41856 | 13a056e8f16e |
parent 26529 | 10ec5e52bf75 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
26529
10ec5e52bf75
8055079: Group 9c: golden files for tests in tools/javac dir
sogoel
parents:
5520
diff
changeset
|
2 |
* @test /nodynamiccopyright/ |
10 | 3 |
* @bug 1241001 |
4 |
* @summary The compiler failed to detect duplicate, nested labels. |
|
5 |
* @author turnidge |
|
6 |
* |
|
26529
10ec5e52bf75
8055079: Group 9c: golden files for tests in tools/javac dir
sogoel
parents:
5520
diff
changeset
|
7 |
* @compile/fail/ref=NestedDuplicateLabels.out -XDrawDiagnostics NestedDuplicateLabels.java |
10 | 8 |
*/ |
9 |
||
10 |
class NestedDuplicateLabels { |
|
11 |
void method() { |
|
12 |
foo: { { foo: {} } } |
|
13 |
} |
|
14 |
} |