Files
kotlin-fork/compiler/testData/diagnostics/tests/override/OverrideWithErrors.fir.kt
T

9 lines
101 B
Kotlin
Vendored

package test
open class A {
open fun foo(a: E) {}
}
class B : A() {
override fun foo(a: E) {}
}