12 lines
250 B
Kotlin
Vendored
12 lines
250 B
Kotlin
Vendored
//NO_CHECK_LAMBDA_INLINING
|
|
import test.*
|
|
|
|
fun box(): String {
|
|
val result = doWork({11})
|
|
if (result != 11) return "test1: ${result}"
|
|
|
|
val result2 = doWork({12; result+1})
|
|
if (result2 != 12) return "test2: ${result2}"
|
|
|
|
return "OK"
|
|
} |