Files
kotlin-fork/compiler/testData/diagnostics/nativeTests/specialBackendChecks/objCInterop/t17.kt
T
2024-01-09 14:17:47 +00:00

11 lines
207 B
Kotlin
Vendored

// FIR_IDENTICAL
// WITH_PLATFORM_LIBS
import platform.darwin.*
import platform.Foundation.*
class Foo : NSObject(), NSPortDelegateProtocol {
fun foo() {
super.handlePortMessage(TODO())
}
}