Change Signature: Implement improved call processing algorithm
#KT-8953 Fixed #KT-9525 Fixed
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
fun <caret>foo(a: Int, b: Int, d: Int, c: Int, e: Int) {
|
||||
|
||||
}
|
||||
|
||||
fun test() {
|
||||
foo(1,
|
||||
2,
|
||||
4, 3, 5)
|
||||
foo(1, 2,
|
||||
4, 3, 5)
|
||||
foo(
|
||||
1,
|
||||
2,
|
||||
4, 3, 5
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user