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.
15 lines
340 B
Java
15 lines
340 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 5097250 5087624
|
|
* @summary Finalize methods on enums must be compile time error
|
|
* @author Peter von der Ahé
|
|
* @compile/fail/ref=NoFinal.out -XDrawDiagnostics NoFinal.java
|
|
*/
|
|
|
|
enum NoFinal {
|
|
A {
|
|
protected void finalize() {
|
|
System.err.println("FISK");
|
|
}
|
|
};
|
|
}
|