c9e9175a88
Each of the duplicated methods in the subclass should get the same set of overridden descriptors
8 lines
167 B
Kotlin
8 lines
167 B
Kotlin
trait Some {
|
|
fun test()
|
|
}
|
|
|
|
class SomeImpl : Some {
|
|
<!CONFLICTING_OVERLOADS!>override fun test()<!> {}
|
|
<!CONFLICTING_OVERLOADS!>override fun test()<!> {}
|
|
} |