mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
GitOrigin-RevId: 8afc6f24ce66b01eb4825b704d03adcc7c164476
14 lines
237 B
Java
14 lines
237 B
Java
import static imports.Values.*;
|
|
|
|
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.;
|
|
}
|
|
}
|