blob: 789c7859d87528da5294eaa23f5e3f0b1c15398e [file] [log] [blame]
// "Add 'operator' modifier" "true"
class A {
operator fun get(i: Int): String = ""
}
fun foo() = A()[0]