mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
10 lines
407 B
Java
10 lines
407 B
Java
@Deprecated @SuppressWarnings("")
|
|
<error descr="Class 'Foo' must either be declared abstract or implement abstract method 'run()' in 'Runnable'">class Foo implements Runnable</error> {
|
|
|
|
}
|
|
|
|
class F {
|
|
@Deprecated @SuppressWarnings("") <error descr="'f()' is already defined in 'F'">void f()</error> {}
|
|
@Deprecated @SuppressWarnings("") <error descr="'f()' is already defined in 'F'">void f()</error> {}
|
|
}
|