Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9ca5f9c66ebdb7e907ed23a75ccf71e119b6392c
/
.
/
idea
/
testData
/
quickfix
/
modifiers
/
operatorModifierComponent.kt
blob: 29c025f0d969e81f88423b0f08b629694608eed8 [
file
] [
log
] [
blame
]
// "Add 'operator' modifier" "true"
// ERROR: 'operator' modifier is required on 'component2' in 'A'
class
A
{
fun component1
():
Int
=
0
fun component2
():
Int
=
1
}
fun foo
()
{
val
(<
caret
>
zero
,
one
)
=
A
()
}