blob: abef220717aee29d231b4cf06efa63ebc2816fe6 [file] [log] [blame]
public enum Test {
A(new String[]{"1", "2"});
Test(String... ss) {
}
}