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

7 lines
142 B
Kotlin
Vendored

import kotlin.native.ref.*
@OptIn(kotlin.experimental.ExperimentalNativeApi::class)
fun foo(x: Int) {
createCleaner(42) { println(x) }
}