mirror of
https://github.com/openjdk/jdk.git
synced 2026-01-28 12:09:14 +00:00
15 lines
326 B
Java
15 lines
326 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=NoFinal3.out -XDrawDiagnostics NoFinal3.java
|
|
*/
|
|
|
|
enum NoFinal3 {
|
|
A, B, C;
|
|
public void finalize() {
|
|
System.err.println("FISK");
|
|
}
|
|
}
|