11 lines
258 B
Kotlin
Vendored
11 lines
258 B
Kotlin
Vendored
// IGNORE_BACKEND: JS_IR
|
|
// TODO: Enable when JS backend supports Java class library
|
|
// IGNORE_BACKEND: JS, NATIVE
|
|
public class SomeClass() : java.lang.Object() {
|
|
}
|
|
|
|
public fun box():String {
|
|
System.out?.println(SomeClass().getClass())
|
|
return "OK"
|
|
}
|