Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
quickfix
/
modifiers
/
operatorModifierInherited.kt
blob: 63a4a5878f63247e01ee60cd0720b3aae192c4ad [
file
] [
log
] [
blame
]
// "Add 'operator' modifier" "true"
open
class
Foo
{
fun
get
(
idx
:
Int
):
Any
=
5
}
object
Bar
:
Foo
()
fun test
():
Any
{
return
Bar
<caret>
[
5
]
}