8 lines
145 B
Kotlin
Vendored
8 lines
145 B
Kotlin
Vendored
import kotlin.native.runtime.GC
|
|
import kotlin.test.*
|
|
|
|
@OptIn(kotlin.native.runtime.NativeRuntimeApi::class)
|
|
@Test
|
|
fun test() {
|
|
GC.collect()
|
|
} |