blob: ca04da0e74588d1cf7bda01dd09980ff92d06787 [file] [log] [blame]
interface Foo {
}
enum FooEnum implements Foo {
ONE, TWO;
}
class Doo {
void doSomething(Foo f) {
}
void doSomethingElse() {
doSomething(new <caret>);
}
}