mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 05:09:37 +07:00
11 lines
168 B
Java
11 lines
168 B
Java
// "Add static import for 'test.Bar.Foo'" "true"
|
|
package test;
|
|
|
|
import static test.Bar.Foo;
|
|
|
|
class Bar {
|
|
public static @interface Foo {}
|
|
}
|
|
@Foo
|
|
public class OOO {
|
|
} |