mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
12 lines
132 B
Java
12 lines
132 B
Java
class Test {
|
|
void foo(E... e) {
|
|
}
|
|
|
|
void bar() {
|
|
foo(<selection>E.E1, E.E2</selection>);
|
|
}
|
|
}
|
|
|
|
static enum E {
|
|
E1, E2;
|
|
} |