highlight usages tests -> community

This commit is contained in:
peter
2012-11-05 18:43:59 +01:00
parent abd90c58d1
commit 4d84e2e1f9
9 changed files with 212 additions and 0 deletions
@@ -0,0 +1,11 @@
class Usage <caret>implements Base, Other{
public void foo() {
}
public void other() {}
}
interface Base {
void foo();
}
interface Other {
void other();
}