Files
kotlin-fork/compiler/testData/cli/jvm/twoDiagnosticsOnSingleElement.kt
T
Ilya Chernikov 7ec72b568d Fix assertion in light tree diagnostic reporter
happened then two diagnostics are reported on the same element.
#KT-55924 fixed
2023-01-20 17:57:15 +00:00

12 lines
99 B
Kotlin
Vendored

package test
interface I1 {
fun <T> foo()
}
interface I2 {
fun foo()
}
class C : I1, I2