mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
12 lines
164 B
Plaintext
12 lines
164 B
Plaintext
interface A {
|
|
void m();
|
|
}
|
|
class B implements A {
|
|
public void <caret>m() {
|
|
System.out.println("foo");
|
|
}
|
|
|
|
static {
|
|
System.out.println("foo");
|
|
}
|
|
} |