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

10 lines
118 B
Kotlin
Vendored

interface Runnable {
fun run()
}
class C {
fun f() {
class MyRunnable(): Runnable {
}
}
}