mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-30 07:53:45 +07:00
311f965f20
GitOrigin-RevId: 3cdbe9a8fbad5b785934f8f6280e4140cb8aa75c
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();
|
|
}
|
|
} |