66310806ca
#KT-9628 Fixed
9 lines
199 B
Kotlin
Vendored
9 lines
199 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
fun test() {
|
|
class Test{
|
|
operator fun get(a: Int = 0, b: Int = 1, c: Int = 2, d: Int = 3) : Int = 0
|
|
}
|
|
val test = Test()
|
|
test.g<caret>et(1, c=3, b=2)
|
|
}
|