Files
kotlin/compiler/testData/codegen/boxInline/simple/rootConstructor.1.kt
2015-04-13 16:11:21 +03:00

10 lines
141 B
Kotlin
Vendored

//NO_CHECK_LAMBDA_INLINING
import test.*
val s = doWork({11})
fun box(): String {
if (s != 11) return "test1: ${s}"
return "OK"
}