Add recovery for missing comma between arguments
^KT-13497 Fixed
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
fun foo() {
|
||||
bar1(
|
||||
A()
|
||||
A()
|
||||
)
|
||||
bar2(A() A())
|
||||
|
||||
bar3(x y)
|
||||
bar4(x
|
||||
y
|
||||
)
|
||||
|
||||
bar5("" "")
|
||||
bar6(""
|
||||
""
|
||||
)
|
||||
|
||||
bar7({} {})
|
||||
bar8({}
|
||||
{}
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user