Files
kotlin-fork/compiler/testData/diagnostics/tests/override/kt2052.kt
T
2021-03-24 16:07:25 +03:00

11 lines
173 B
Kotlin
Vendored

// FIR_IDENTICAL
interface Runnable {
fun run()
}
class C {
fun f() {
<!ABSTRACT_MEMBER_NOT_IMPLEMENTED!>class MyRunnable<!>(): Runnable {
}
}
}