7 lines
133 B
Kotlin
Vendored
7 lines
133 B
Kotlin
Vendored
class C {
|
|
operator fun get(a: Int, b: String): Boolean = true
|
|
}
|
|
|
|
fun call(c: C) {
|
|
val res = <expr>c[1, "foo", false]</expr>
|
|
} |