blob: 2bbfaf5dff4f1b9c0d230ad34fbfe36143774038 [file]
package test
inline fun test(a: String, b: String, c: () -> String): String {
return a + b + c();
}