Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
14 lines
314 B
Java
14 lines
314 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 4039843 8057652
|
|
* @summary The compiler should not allow labeled declarations.
|
|
* @author turnidge
|
|
*
|
|
* @compile/fail/ref=LabeledDeclaration.out -XDrawDiagnostics LabeledDeclaration.java
|
|
*/
|
|
|
|
class LabeledDeclaration {
|
|
void method() {
|
|
foo: int i = 111;
|
|
}
|
|
}
|