Files
kotlin-fork/compiler/testData/codegen/boxInline/argumentOrder/extension.2.kt
T
Michael Bogdanov 2a19b06874 new tests
2015-10-03 10:53:18 +03:00

5 lines
120 B
Kotlin
Vendored

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