mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
12 lines
180 B
Java
12 lines
180 B
Java
import static Outer.Double;
|
|
|
|
class Outer {
|
|
static class Double {
|
|
}
|
|
}
|
|
|
|
class StaticImportTest {
|
|
public static void main(String[] args) {
|
|
<caret>Double d;
|
|
}
|
|
} |