f07028959d
^KT-61862 Related
7 lines
175 B
Kotlin
Vendored
7 lines
175 B
Kotlin
Vendored
// KJS_WITH_FULL_RUNTIME
|
|
import kotlin.js.Promise
|
|
|
|
public class MyPromise(executor: ((Unit) -> Unit, (Throwable) -> Unit) -> Unit) : Promise<Unit>(executor)
|
|
|
|
fun box() = "OK"
|