Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ebcc2cc3b207156c1c0e90e5107aa356b8fa8d72
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
complex
/
kt44429.kt
blob: 4bf044085678b8f08c7ddce8014eeecdac057e2e [
file
]
// IGNORE_BACKEND: NATIVE
// NO_CHECK_LAMBDA_INLINING
// FILE: 1.kt
package
test
inline
fun
<
T
>
takeT
(
t
:
T
)
{}
// FILE: 2.kt
import
test
.*
fun box
():
String
{
val f
=
{
null
}
as
()
->
Int
takeT
(
f
())
return
"OK"
}