blob: 0db3984de042ac54927167ffe7bc5bdc76974ba2 [file] [log] [blame]
public enum Test
{
FIRST, SECOND;
public Test invert() {
return this == FIRST ? SECOND : FIRST;
}
}