7ec72b568d
happened then two diagnostics are reported on the same element. #KT-55924 fixed
12 lines
99 B
Kotlin
Vendored
12 lines
99 B
Kotlin
Vendored
package test
|
|
|
|
interface I1 {
|
|
fun <T> foo()
|
|
}
|
|
|
|
interface I2 {
|
|
fun foo()
|
|
}
|
|
|
|
class C : I1, I2
|