mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
15 lines
172 B
Java
15 lines
172 B
Java
class List {
|
|
@SuppressWarnings
|
|
@Deprecated
|
|
void foo() {}
|
|
}
|
|
|
|
class Test {
|
|
List l;
|
|
|
|
@Deprecated
|
|
static void foo() {
|
|
l.foo();
|
|
}
|
|
<caret>
|
|
} |