blob: a2bce5c8f77e026d98c78a34f16defb75de4f8ce [file] [log] [blame]
package test0048;
enum X { GREEN(0, 1), RED();
X(int i, int j) {}
X() {}
}