mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-26 20:50:54 +07:00
19 lines
246 B
Java
19 lines
246 B
Java
// "Suppress for class" "true"
|
|
public class Test {
|
|
|
|
public void test() {
|
|
Inner inner = new Inner();
|
|
}
|
|
|
|
private static class Inner {
|
|
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
int i;
|
|
public void unused() {
|
|
<caret>i++;
|
|
}
|
|
}
|
|
}
|