Files
Roman Shevchenkoandintellij-monorepo-bot 6a7cc72eab Cleanup (typos in test data)
GitOrigin-RevId: d83baca2662fb7c124c7bec51bf53d78dc4fb303
2019-07-02 06:52:16 +03:00

13 lines
142 B
Java

class Test {
void foo(E... e) {
}
void bar() {
E[] strings = {E.E1, E.E2};
foo(strings);
}
}
static enum E {
E1, E2;
}