2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2014-09-13 00:05:18 +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
|
|
|
|
*
|
2014-09-13 00:05:18 +00:00
|
|
|
* @compile/fail/ref=Parens3.out -XDrawDiagnostics Parens3.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class Parens3 {
|
|
|
|
void f() {
|
|
|
|
(foo): ;
|
|
|
|
}
|
|
|
|
}
|