mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 04:21:24 +07:00
moving tests from codeInsight-tests to community
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user