Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceContains/allowableDefaultArgument.kt
T
2015-12-17 11:11:27 +03:00

8 lines
152 B
Kotlin
Vendored

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