10 lines
129 B
Kotlin
Vendored
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
|