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 4408036
|
|
|
|
* @summary Compiler accepted "(i=2);" as a valid expession statement.
|
|
|
|
* @author gafter
|
|
|
|
*
|
2014-09-13 00:05:18 +00:00
|
|
|
* @compile/fail/ref=Parens2.out -XDrawDiagnostics Parens2.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class Parens2 {
|
|
|
|
void f() {
|
|
|
|
int i;
|
|
|
|
(i = 2);
|
|
|
|
}
|
|
|
|
}
|