9 lines
177 B
Kotlin
Vendored
9 lines
177 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
fun test() {
|
|
class Test{
|
|
operator fun contains(a: Int, b: Int) : Boolean = true
|
|
}
|
|
val test = Test()
|
|
test.c<caret>ontains(1, 2)
|
|
}
|