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

8 lines
159 B
Kotlin
Vendored

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