Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
modifiers
/
operatorModifierGet.kt.after
blob: 789c7859d87528da5294eaa23f5e3f0b1c15398e [
file
]
// "Add 'operator' modifier" "true"
class
A
{
operator
fun
get
(
i
:
Int
):
String
=
""
}
fun foo
()
=
A
()[
0
]