mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 05:18:06 +07:00
GitOrigin-RevId: d83baca2662fb7c124c7bec51bf53d78dc4fb303
13 lines
142 B
Java
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;
|
|
} |