8 lines
142 B
Kotlin
Vendored
8 lines
142 B
Kotlin
Vendored
fun test() {
|
|
class Test{
|
|
operator fun contains(a: Int) : Boolean = true
|
|
}
|
|
val test = Test()
|
|
test.c<caret>ontains(1)
|
|
}
|