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