blob: 3c1e181fd2cf86f9e1f1c49b8bb9d83426c6f810 [file] [log] [blame]
class Usage <caret>implements Base, Other{
public void foo() {
}
public void other() {}
}
interface Base {
void foo();
}
interface Other {
void other();
}