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