dbba6d09ff
^KT-61564
15 lines
417 B
Kotlin
Vendored
15 lines
417 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// WITH_PLATFORM_LIBS
|
|
import kotlinx.cinterop.*
|
|
import platform.darwin.*
|
|
import platform.Foundation.*
|
|
|
|
class Zzz : NSString {
|
|
<!CONSTRUCTOR_OVERRIDES_ALREADY_OVERRIDDEN_OBJC_INITIALIZER!>@OptIn(kotlinx.cinterop.BetaInteropApi::class)
|
|
@OverrideInit
|
|
constructor(coder: NSCoder) { }<!>
|
|
|
|
@Suppress("OVERRIDE_DEPRECATION")
|
|
override fun initWithCoder(coder: NSCoder): String? = "zzz"
|
|
}
|