Files
kotlin-fork/compiler/testData/codegen/boxInline/complexStack/simple.2.kt
T

5 lines
115 B
Kotlin
Vendored

package test
inline fun foo(x: String) = x
inline fun processRecords(block: (String) -> String) = block(foo("O"))