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