mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
10 lines
141 B
Kotlin
Vendored
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"
|
|
} |