Files
kotlin-fork/compiler/testData/codegen/boxInline/smap/oneFile.kt
T
2021-02-02 17:53:53 +03:00

20 lines
221 B
Kotlin
Vendored

// FILE: 1.kt
package zzz
inline fun nothing() {}
// FILE: 2.kt
fun box(): String {
return test {
"K"
}
}
inline fun test(p: () -> String): String {
var pd = ""
pd = "O"
return pd + p()
}