78493395c3
This will improve the usability when using named arguments where incomplete arguments can't be mapped to a parameter simply by position. ^KT-24172 Fixed
8 lines
179 B
Kotlin
Vendored
8 lines
179 B
Kotlin
Vendored
open class A(x: Int) {
|
|
fun m(x: Int, y: Int) = 2
|
|
|
|
fun d(x: Int) {
|
|
m(1, 2, 3<caret>)
|
|
}
|
|
}
|
|
//Text: (x: Int, y: Int), Disabled: true, Strikeout: false, Green: true |