blob: 923aa948ef30d358f2f4e0c57bbbf9fe45b61869 [file] [log] [blame]
enum E {
A("") {def foo() {}};
def E(int i) {}
abstract def foo();
}
-----
public enum E {
A((int)0){
public java.lang.Object foo() {
return null;
}
};
E(int i) {
}
public abstract java.lang.Object foo() ;
}
---