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

8 lines
155 B
Kotlin
Vendored

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