Files
kotlin-fork/idea/idea-completion/testData/smart/inOperator/NonBooleanContains.kt
T

10 lines
129 B
Kotlin
Vendored

interface X {
operator fun contains(s: String): Boolean?
}
fun foo(s: String, x: X) {
if (s in <caret>)
}
// ABSENT: x