mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +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();
|
|
}
|
|
} |