11 lines
193 B
Kotlin
Vendored
11 lines
193 B
Kotlin
Vendored
//NO_CHECK_LAMBDA_INLINING
|
|
fun test1(): Int {
|
|
return calc( { l: Int -> 2*l}, { l: Int -> 4*l})
|
|
}
|
|
|
|
|
|
fun box(): String {
|
|
if (test1() != 110) return "test1: ${test1()}"
|
|
|
|
return "OK"
|
|
} |