Files
kotlin/compiler/testData/codegen/boxInline/argumentOrder/captured.2.kt
2015-10-03 10:53:21 +03:00

5 lines
123 B
Kotlin
Vendored

package test
inline fun test(a: Int, b: Long, crossinline c: () -> String): String {
return { "${a}_${b}_${c()}"} ()
}