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

7 lines
138 B
Kotlin
Vendored

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