Make "Add operator modifier" an inspection instead of intention
#KT-31533 Fixed
This commit is contained in:
committed by
Dmitry Gridin
parent
5123e1f078
commit
4c62788c3e
@@ -0,0 +1,9 @@
|
||||
open class A {
|
||||
open fun plus(other: A): A = A()
|
||||
}
|
||||
|
||||
class B : A() {
|
||||
override fun <caret>plus(other: A): A {
|
||||
return super.plus(other)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user