Files
kotlin-fork/js/js.translator/testData/box/nameClashes/promiseThen.kt
T
Alexander Korepanov f07028959d [FIR JS] Add more tests for JS_NAME_CLASH diagnostic
^KT-61862 Related
2023-09-13 10:54:57 +00:00

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"