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

15 lines
314 B
Java
Raw Normal View History

2007-12-01 00:00:00 +00:00
/*
* @test /nodynamiccopyright/
* @bug 4039843 8057652
2007-12-01 00:00:00 +00:00
* @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;
}
}