mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
moved java resolve tests to community
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
public class Cycle1{
|
||||
public interface A{
|
||||
void foo();
|
||||
}
|
||||
|
||||
public interface B{
|
||||
void foo();
|
||||
}
|
||||
|
||||
public static class C
|
||||
implements A{
|
||||
void foo(){}
|
||||
}
|
||||
|
||||
public static class D extends C
|
||||
implements B{
|
||||
void foo(int ggg){}
|
||||
|
||||
void foo1(){
|
||||
<ref>foo();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user