Files
kotlin-fork/compiler/testData/ir/irText/js/external/kt38765.kt
T
2023-03-22 15:18:17 +00:00

22 lines
404 B
Kotlin
Vendored

// TARGET_BACKEND: JS_IR
// IGNORE_BACKEND_K1: JS_IR
// IGNORE_BACKEND_K1: JS_IR_ES6
package events
external open class internal {
open class EventEmitterP : internal {
}
open class EventEmitterS : internal {
constructor(a: Any)
}
object NestedExternalObject : internal {}
enum class NestedExternalEnum {
A, B
}
interface NestedExternalInterface {}
}