jdk-24/langtools/test/tools/javac/LabeledDeclaration.java
2014-09-05 16:51:39 -07:00

15 lines
306 B
Java

/*
* @test /nodynamiccopyright/
* @bug 4039843
* @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;
}
}