c34b417d0c
#KT-34744
16 lines
188 B
Kotlin
Vendored
16 lines
188 B
Kotlin
Vendored
fun <caret>foo(c: Int, b: Int, a: Int) {
|
|
|
|
}
|
|
|
|
fun test() {
|
|
foo(3,
|
|
2,
|
|
1)
|
|
foo(3, 2,
|
|
1)
|
|
foo(
|
|
3,
|
|
2,
|
|
1
|
|
)
|
|
} |