Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
14 lines
250 B
Java
14 lines
250 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 4394546
|
|
* @summary get no err msg if label wrapped in parentheses
|
|
* @author gafter
|
|
*
|
|
* @compile/fail/ref=Parens3.out -XDrawDiagnostics Parens3.java
|
|
*/
|
|
|
|
class Parens3 {
|
|
void f() {
|
|
(foo): ;
|
|
}
|
|
}
|