Dropped inspection for functions matching operator convention - only intention left

This commit is contained in:
Valentin Kipyatkov
2015-10-19 09:57:46 +03:00
parent ff60a13228
commit 0a5255ee4e
20 changed files with 62 additions and 97 deletions
@@ -0,0 +1,8 @@
// IS_APPLICABLE: false
open class A {
open operator fun plus(a: A) = A()
}
class B : A() {
override fun plu<caret>s(a: A) = A()
}