blob: 733991c10f3c4441f7004b6c5c09a40a25b4a092 [file] [log] [blame]
class Test {
void foo(E... e) {
}
void bar() {
foo(<selection>E.E1, E.E2</selection>);
}
}
static enum E {
E1, E2;
}