mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
16 lines
245 B
Java
16 lines
245 B
Java
// "Use existing implementation of 'm'" "true"
|
|
interface I {
|
|
void <caret>m();
|
|
}
|
|
|
|
class A implements I {
|
|
public static final String TEXT = "code";
|
|
|
|
public void m() {
|
|
System.out.println(TEXT);
|
|
}
|
|
}
|
|
|
|
class B implements I {
|
|
}
|