Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/diagnostics/someOverridesTest.kt
T

12 lines
192 B
Kotlin
Vendored

// FIR_DISABLE_LAZY_RESOLVE_CHECKS
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) {}
}