Files
kotlin-fork/compiler/testData/diagnostics/tests/override/OverridingFinalMember.kt
T
2021-02-03 12:07:36 +03:00

9 lines
132 B
Kotlin
Vendored

// FIR_IDENTICAL
open class A {
final fun foo() {}
}
class B : A() {
<!OVERRIDING_FINAL_MEMBER!>override<!> fun foo() {}
}