mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
17 lines
224 B
Java
17 lines
224 B
Java
class C {
|
|
{
|
|
@A int i = 0;
|
|
System.out.println(i);
|
|
}
|
|
|
|
void f() {
|
|
newMethod();
|
|
}
|
|
|
|
private void newMethod() {
|
|
@B int j = 0;
|
|
System.out.println(j);
|
|
}
|
|
}
|
|
@interface A {}
|
|
@interface B {} |