mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
10 lines
168 B
Java
10 lines
168 B
Java
// "Add on demand static import for 'test.Foo'" "true"
|
|
package test;
|
|
|
|
class Foo {
|
|
public static void m() {}
|
|
|
|
public static void main(String[] args) {
|
|
m();
|
|
}
|
|
} |