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