Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
psi
/
noCommaBetweenArguments.kt
blob: 76d9c096da302ea6a644117ceaec87de932b3572 [
file
]
// COMPILATION_ERRORS
fun foo
()
{
bar1
(
A
()
A
()
)
bar2
(
A
()
A
())
bar3
(
x y
)
bar4
(
x
y
)
bar5
(
""
""
)
bar6
(
""
""
)
bar7
({}
{})
bar8
({}
{}
)
}