mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
14 lines
200 B
Java
14 lines
200 B
Java
// "Use existing implementation of 'm'" "true"
|
|
interface I {
|
|
void <caret>m();
|
|
}
|
|
|
|
class A implements I {
|
|
public void m() {
|
|
System.out.println("code");
|
|
}
|
|
}
|
|
|
|
class B implements I {
|
|
}
|