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
9 lines
241 B
Kotlin
Vendored
9 lines
241 B
Kotlin
Vendored
// COMPILER_ARGUMENTS: -XXLanguage:-TrailingCommas
|
|
open class A(x: Int) {
|
|
fun m(x: Int, y: Boolean) = 2
|
|
|
|
fun d(x: Int) {
|
|
m(1, false, <caret>)
|
|
}
|
|
}
|
|
//Text: (x: Int, y: Boolean), Disabled: true, Strikeout: false, Green: true |