blob: ee382d3b78e7a5826c562e6f38e6af0221f0f056 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 5097250 5087624
* @summary Finalize methods on enums must be compile time error
* @author Peter von der Ah\u00e9
* @compile/fail/ref=NoFinal4.out -XDrawDiagnostics NoFinal4.java
*/
enum NoFinal4 {
A, B, C;
private void finalize() {
System.err.println("FISK");
}
}