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