Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
quickfix
/
modifiers
/
operatorModifierCollection.kt.after
blob: 498bf2cd0f6c5669d6b08fb57c0ef055e2e5be8c [
file
] [
log
] [
blame
]
// "Add 'operator' modifier" "true"
class
A
{
operator
fun contains
(
x
:
Any
):
Boolean
=
false
}
fun foo
()
=
0
in
A
()