Files
kotlin-fork/kotlin-native/backend.native/tests/compilerChecks/t53.kt
T
2023-06-22 16:22:59 +00:00

11 lines
187 B
Kotlin

import kotlin.native.ref.*
class C(val x: Int) {
fun bar(y: Int) = println(x + y)
}
@OptIn(kotlin.ExperimentalStdlibApi::class)
fun foo(x: Int) {
createCleaner(42, C(x)::bar)
}