Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f8b8915520217c656f00750d7faa239c6233ece
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
lambdaClassClash
/
noInlineLambdaX2.1.kt
blob: 420074aa9305225820b71f7b803315e3319b91c7 [
file
]
//NO_CHECK_LAMBDA_INLINING
import
test
.*
fun test1
():
Int
{
return
1.inlineMethod
()
}
fun box
():
String
{
val result
=
test1
()
if
(
result
!=
2
)
return
"test1: ${result}"
return
"OK"
}