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

7 lines
129 B
Kotlin

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