mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
13 lines
143 B
Java
13 lines
143 B
Java
class A{
|
|
interface A{}
|
|
interface B{}
|
|
|
|
class C implements A, B{
|
|
void foo(A a){}
|
|
void foo(B b){}
|
|
}
|
|
{
|
|
new C().<caret>foo(new C())
|
|
}
|
|
}
|