quickfix for usages of operators that don't have the proper annotation
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
// "Add 'operator' modifier" "true"
|
||||
class A {
|
||||
fun component1(): Int = 0
|
||||
fun component2(): Int = 1
|
||||
}
|
||||
|
||||
fun foo() {
|
||||
val (<caret>zero, one) = A()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user