Files
kotlin-fork/compiler/testData/diagnostics/tests/override/kt2052.kt
T
2015-05-12 19:43:17 +02:00

10 lines
156 B
Kotlin

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