This simple enum
public enum NormalEnum {
One(1);
int v;
int value() {
return v;
};
NormalEnum(int i) {
v = i;
}
}
Does not has its value() method after spoon processing. Even when
invoked without processors.
I have a small complete test case ¿Should I attach it?