8 lines
155 B
Kotlin
Vendored
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
|
|
}
|