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