38ef229e3f
Changing Check.validate to reject void types. Reviewed-by: jjg, vromero
10 lines
281 B
Java
10 lines
281 B
Java
/* @test /nodynamiccopyright/
|
|
* @bug 8026374
|
|
* @summary Cannot use void as a variable type
|
|
* @compile/fail/ref=MethodVoidParameter.out -XDrawDiagnostics MethodVoidParameter.java
|
|
*/
|
|
public class MethodVoidParameter {
|
|
void method(void v) { }
|
|
void method(void... v) { }
|
|
}
|