Files
kotlin-fork/compiler/testData/codegen/boxInline/rootConstructor/1.kt
T
2014-03-03 15:43:35 +04:00

9 lines
114 B
Kotlin

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