Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/diagnostics/someOverridesTest.kt
T
2020-08-28 17:07:35 +03:00

11 lines
157 B
Kotlin
Vendored

open class A
open class B : A()
open class First<T> {
open fun test(item: T) {}
}
open class Second : First<A>() {
override fun test(item: A) {}
}