jdk-24/langtools/test/tools/javac/LabeledDeclaration.java

15 lines
306 B
Java
Raw Normal View History

2007-12-01 00:00:00 +00:00
/*
* @test /nodynamiccopyright/
2007-12-01 00:00:00 +00:00
* @bug 4039843
* @summary The compiler should not allow labeled declarations.
* @author turnidge
*
* @compile/fail/ref=LabeledDeclaration.out -XDrawDiagnostics LabeledDeclaration.java
2007-12-01 00:00:00 +00:00
*/
class LabeledDeclaration {
void method() {
foo: int i = 111;
}
}