Fix tests after disabling trailing comma

#KT-34744
This commit is contained in:
Dmitry Gridin
2020-01-31 16:18:13 +07:00
parent 3fb34596ae
commit c34b417d0c
146 changed files with 612 additions and 945 deletions
@@ -18,9 +18,7 @@ fun useSimple(s: Int): Int {
fun println(s: String) {}
fun useIt() {
val t = useSimple(
simple {
println("abc")
}
)
val t = useSimple(simple {
println("abc")
})
}
@@ -36,6 +36,5 @@ fun createHi(any: Any) = "Hi $any"
val unDeprecateMe = mutableListOf("Hello").apply {
addA(d(::createHi, 1 ) { // Run the quick fix from the IDE and watch it produce broken code.
println("Yo")
}, Unit
)
}, Unit)
}