10 lines
219 B
Kotlin
Vendored
10 lines
219 B
Kotlin
Vendored
// TODO: Enable when JS backend supports Java class library
|
|
// TARGET_BACKEND: JVM
|
|
public class SomeClass() : java.lang.Object() {
|
|
}
|
|
|
|
fun box():String {
|
|
System.out?.println(SomeClass().getClass())
|
|
return "OK"
|
|
}
|