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.
9 lines
281 B
Java
9 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) { }
|
|
}
|