mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 18:20:52 +07:00
17 lines
296 B
Java
17 lines
296 B
Java
// "Add on-demand static import for 'test.GregorianCalendar'" "true-preview"
|
|
package test;
|
|
|
|
import static test.GregorianCalendar.*;
|
|
|
|
public class Foo {
|
|
{
|
|
getInstance();
|
|
}
|
|
}
|
|
|
|
class Calendar {
|
|
public static final void getInstance() {}
|
|
}
|
|
|
|
class GregorianCalendar extends Calendar {
|
|
} |