Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
noInline
/
lambdaAsGeneric.kt
blob: 868f75c9f186ff20b27f4a7a7378b75bdb78419d [
file
]
// NO_CHECK_LAMBDA_INLINING
// FILE: 1.kt
inline
fun
<
T
>
test
(
p
:
T
)
{
p
.
toString
()
}
// FILE: 2.kt
fun box
()
:
String
{
test
{
"123"
}
return
"OK"
}