Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
946dff8bda9fd326d2b6c18f10c7545ebed12ae1
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
special
/
stackHeightBug.kt
blob: 21de6838e34754513c4abe6b18397fc092bf9081 [
file
]
// FILE: 1.kt
package
test
inline
fun
<
R
>
mfun
(
f
:
()
->
R
)
{
f
()
f
()
}
public
inline
fun
String
.
toLowerCase2
()
:
String
=
""
// FILE: 2.kt
import
test
.*
fun box
():
String
{
mfun
{
""
.
toLowerCase2
()
}
return
"OK"
}