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

11 lines
287 B
Kotlin
Vendored

import kotlin.test.*
import objcTests.*
/// KT-37067: attribute prefixed with "new" causes cinterop failure
// No matter what is in the test: I only need to get it compilable with cinterop
@Test fun testKT37067() {
val impl = KT37067_Impl()
assertEquals(null, impl.newValue)
}