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
260 B
Java
9 lines
260 B
Java
/**
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8344706
|
|
* @compile/fail/ref=ImplicitClassRecovery.out -XDrawDiagnostics ImplicitClassRecovery.java
|
|
*/
|
|
public void main() {
|
|
//the following is intentionally missing a semicolon:
|
|
System.err.println("Hello!")
|
|
}
|