mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
GitOrigin-RevId: 8afc6f24ce66b01eb4825b704d03adcc7c164476
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.;
|
|
}
|
|
}
|