Files
kotlin-fork/native/native.tests/testData/standalone/checkers/leak_memory.kt
T
2024-03-15 01:28:01 +00:00

10 lines
240 B
Kotlin
Vendored

@file:OptIn(kotlin.experimental.ExperimentalNativeApi::class, ExperimentalForeignApi::class)
import kotlinx.cinterop.*
import kotlin.native.Platform
fun main() {
Platform.isMemoryLeakCheckerActive = true
StableRef.create(Any())
}