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

15 lines
250 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 4394546
* @summary get no err msg if label wrapped in parentheses
* @author gafter
*
* @compile/fail/ref=Parens3.out -XDrawDiagnostics Parens3.java
2007-12-01 00:00:00 +00:00
*/
class Parens3 {
void f() {
(foo): ;
}
}