moving tests from codeInsight-tests to community

This commit is contained in:
Dmitry Jemerov
2015-02-11 15:07:16 +01:00
parent 9dee6e8ff3
commit c25243f74d
78 changed files with 1449 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
interface B0 {
void foo();
}
class A3 implements B0{
@Override
public void foo() {}
}
class B3 implements A3 {
B3 myDelegate;
@Override
public void foo() {
myDelegate.foo();
}
}