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

5 lines
104 B
Kotlin
Vendored

package test
inline fun test(a: String, b: String, c: () -> String): String {
return a + b + c();
}