6ff955b66c
#KT-8953 Fixed #KT-9525 Fixed
16 lines
176 B
Kotlin
Vendored
16 lines
176 B
Kotlin
Vendored
fun <caret>foo(a: Int, b: Int, c: Int) {
|
|
|
|
}
|
|
|
|
fun test() {
|
|
foo(1,
|
|
2,
|
|
3)
|
|
foo(1, 2,
|
|
3)
|
|
foo(
|
|
1,
|
|
2,
|
|
3
|
|
)
|
|
} |