mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
20 lines
273 B
Java
20 lines
273 B
Java
// "Suppress for class" "true"
|
|
public class Test {
|
|
|
|
public void test() {
|
|
Inner inner = new Inner();
|
|
}
|
|
|
|
/** @noinspection deprecation*/
|
|
private static class Inner {
|
|
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
int i;
|
|
public void unused() {
|
|
i++;
|
|
}
|
|
}
|
|
}
|