Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceGetIntention/missingDefaultArgument.kt
T
2015-05-14 01:10:05 +03:00

9 lines
154 B
Kotlin

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