blob: 423d6683f0c0a6c91156e654d21cdcf9c590f7bf [file] [log] [blame]
=== test/Test.java ===
package test;
public enum Test {
ONE(true);
private Test(boolean value) {}
}