mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
16 lines
201 B
Java
16 lines
201 B
Java
class C {
|
|
{
|
|
newMethod();
|
|
}
|
|
|
|
void f() {
|
|
newMethod();
|
|
}
|
|
|
|
private void newMethod() {
|
|
@A @B int j = 0;
|
|
System.out.println(j);
|
|
}
|
|
}
|
|
@interface A {}
|
|
@interface B {} |