mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
11 lines
243 B
Kotlin
Vendored
11 lines
243 B
Kotlin
Vendored
fun runNoInline(f: () -> Unit) = f()
|
|
|
|
fun test() {
|
|
var x = 1
|
|
runNoInline { ++x }
|
|
}
|
|
|
|
// 1 NEW kotlin/jvm/internal/Ref\$IntRef
|
|
// 2 GETFIELD kotlin/jvm/internal/Ref\$IntRef\.element
|
|
// 2 PUTFIELD kotlin/jvm/internal/Ref\$IntRef\.element
|