Files
kotlin-fork/compiler/testData/codegen/boxInline/compexStack/simple4.2.kt
T
2016-02-05 15:42:46 +03:00

11 lines
206 B
Kotlin
Vendored

package test
inline fun foo(x: String) = x
fun test(a: String, s: String) = s
inline fun processRecords(block: (String, String) -> String): String {
return test("stub", block(foo("O"), foo("K")))
}