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