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

10 lines
150 B
Kotlin
Vendored

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