mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 09:47:51 +07:00
10 lines
109 B
Java
10 lines
109 B
Java
class Test {
|
|
@Deprecated
|
|
private int f;
|
|
|
|
void foo () {
|
|
f = 0;
|
|
int k = f;
|
|
}
|
|
}
|