8168774: Polymorhic signature method check crashes javac
Summary: Check for polysig method assumes arity is greater than zero
Reviewed-by: vromero
/*
* @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);
}
}