Files
kotlin/compiler/testData/codegen/boxInline/simple/rootConstructor.1.kt
2014-07-07 10:51:46 +04:00

9 lines
114 B
Kotlin

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