11 lines
210 B
Kotlin
Vendored
11 lines
210 B
Kotlin
Vendored
// TARGET_BACKEND: JVM_IR
|
|
|
|
fun box() {
|
|
val str = "OK"
|
|
val a = { s: String -> s }("OK")
|
|
val b = { s: String -> s }(str)
|
|
val c = { s: String -> s }
|
|
c.invoke("OK")
|
|
}
|
|
|
|
// 1 checkNotNullParameter |