Files
kotlin-fork/compiler/testData/codegen/boxInline/complex/kt44429.kt
T
2021-01-20 15:23:09 +01:00

14 lines
202 B
Kotlin
Vendored

// FILE: 1.kt
package test
inline fun <T> takeT(t: T) {}
// FILE: 2.kt
// NO_CHECK_LAMBDA_INLINING
import test.*
fun box(): String {
val f = { null } as () -> Int
takeT(f())
return "OK"
}