blob: f407cfaa792a9d97fd48e645ddcd99edcef1bf72 [file] [log] [blame]
class Test {
void foo(E... e) {
}
void bar() {
E[] strs = {E.E1, E.E2};
foo(strs);
}
}
static enum E {
E1, E2;
}