Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceGetOrSet/missingDefaultArgument.kt
T
2015-10-22 18:48:15 +03:00

9 lines
163 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun test() {
class Test{
operator fun get(a: Int=1, b: Int=2) : Int = 0
}
val test = Test()
test.g<caret>et(b=3)
}