blob: a7f3f1d2f52337e9fe555277fda3d371f76fcf05 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 4408036
* @summary Compiler accepted "(i=2);" as a valid expession statement.
* @author gafter
*
* @compile/fail/ref=Parens2.out -XDrawDiagnostics Parens2.java
*/
class Parens2 {
void f() {
int i;
(i = 2);
}
}