Files
kotlin/compiler/testData/compileKotlinAgainstJava/Singleton.java
baratynskiy 5eea3b6569 Introduce experimental -Xuse-javac compilation mode
In this mode, javac AST and Symbol files are used during
Kotlin compilation instead of PSI / binary stuff.
Later, they are reused for Java file compilation.
javac in this mode is integrated into kotlinc.
2017-05-17 17:48:17 +03:00

22 lines
356 B
Java
Vendored

package test;
public final class Singleton {
private Singleton() {}
private static Singleton INSTANCE;
public static String getString() {
return getInstance().toString();
}
public static Singleton getInstance() {
if (INSTANCE == null) {
INSTANCE = new Singleton();
}
return INSTANCE;
}
}