EA-37399 - ISE: OverrideResolver.findInvisibleOverriddenDescriptor

Each of the duplicated methods in the subclass should get the same set of overridden descriptors
This commit is contained in:
Andrey Breslav
2012-09-18 22:01:39 +04:00
parent f8cdb7e81e
commit c9e9175a88
3 changed files with 30 additions and 10 deletions
@@ -0,0 +1,8 @@
trait Some {
fun test()
}
class SomeImpl : Some {
<!CONFLICTING_OVERLOADS!>override fun test()<!> {}
<!CONFLICTING_OVERLOADS!>override fun test()<!> {}
}