mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
23 lines
226 B
Java
23 lines
226 B
Java
class Foo {
|
|
void m() {
|
|
new C();
|
|
new C();
|
|
|
|
new B();
|
|
new B(0);
|
|
new B(0, 0);
|
|
|
|
<caret>
|
|
}
|
|
}
|
|
|
|
interface A {}
|
|
|
|
class B implements A {
|
|
B() {}
|
|
B(int i) {}
|
|
B(int i, int j) {}
|
|
}
|
|
|
|
class C implements A {
|
|
} |