mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 10:20:56 +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 {
|
|
}
|