Files
kotlin-fork/native/native.tests/testData/interop/objc/tests/nsOutputStream.kt
T
2024-01-31 16:17:21 +00:00

8 lines
215 B
Kotlin
Vendored

import kotlinx.cinterop.*
import kotlin.test.*
import objcTests.*
@Test fun testNSOutputStreamToMemoryConstructor() {
val stream: Any = NSOutputStream(toMemory = Unit)
assertTrue(stream is NSOutputStream)
}