Files
kotlin-fork/compiler/testData/codegen/boxInline/anonymousObject/kt9877.kt
T
2016-04-04 12:07:46 +03:00

33 lines
475 B
Kotlin
Vendored

// FILE: 1.kt
// WITH_RUNTIME
package test
fun <T> T.noInline(p: (T) -> Unit) {
p(this)
}
inline fun inlineCall(p: () -> Unit) {
p()
}
// FILE: 2.kt
import test.*
fun box(): String {
val loci = listOf("a", "b", "c")
var gene = "g1"
inlineCall {
val value = 10.0
loci.forEach {
var locusMap = 1.0
{
locusMap = value
gene = "OK"
}()
}
}
return gene
}