Dropped inspection for functions matching operator convention - only intention left
This commit is contained in:
@@ -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