mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
15 lines
274 B
Java
15 lines
274 B
Java
import static imports.Values.*;
|
|
import static imports.Values.Double;
|
|
|
|
public class Other {
|
|
|
|
void x() {
|
|
System.out.println(Double);
|
|
System.out.println(Object);
|
|
System.out.println(String);
|
|
String s = "";
|
|
Object o = new Object();
|
|
Double d = 5.;
|
|
}
|
|
}
|