mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 11:42:40 +07:00
GitOrigin-RevId: 91fa4b369b7bb2e13490c44105aab70c8f3be36d
12 lines
151 B
Java
12 lines
151 B
Java
@interface Anno {}
|
|
interface A {
|
|
}
|
|
|
|
class FooBar {
|
|
public String m() {}
|
|
}
|
|
|
|
class B extends FooBar implements A {
|
|
@Anno
|
|
public String m() {}
|
|
} |