Files
kotlin-fork/compiler/testData/psi/noCommaBetweenArguments.kt
T
2019-01-17 14:58:01 +03:00

23 lines
209 B
Kotlin
Vendored

fun foo() {
bar1(
A()
A()
)
bar2(A() A())
bar3(x y)
bar4(x
y
)
bar5("" "")
bar6(""
""
)
bar7({} {})
bar8({}
{}
)
}