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