jdk-24/test/langtools/tools/javac/LabeledDeclaration.java
2017-09-12 19:03:39 +02:00

15 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;
}
}