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

8 lines
132 B
Plaintext

fun test() {
class Test{
fun contains(a: Int) : Boolean = true
}
val test = Test()
if (1 !in test) return
}