Migrate testdata to new lambda syntax
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
package test
|
||||
|
||||
inline fun doSmth(vararg a: String) : String {
|
||||
return a.foldRight("", {(a, b) -> a + b})
|
||||
return a.foldRight("", { a, b -> a + b})
|
||||
}
|
||||
Reference in New Issue
Block a user