mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
13 lines
129 B
Plaintext
13 lines
129 B
Plaintext
interface I {
|
|
<spot>void m();</spot>
|
|
}
|
|
|
|
class A implements I {
|
|
void m() {
|
|
doSomething();
|
|
}
|
|
}
|
|
|
|
class B implements I {
|
|
}
|