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

10 lines
152 B
Kotlin

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