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

8 lines
143 B
Kotlin
Vendored

fun test() {
class Test{
fun contains(a: Int, b: Int=5) : Boolean = true
}
val test = Test()
test.c<caret>ontains(1)
}