Files

11 lines
114 B
Kotlin
Vendored

// C
interface Base {
fun foo(): Any
}
class C : Base {
override fun foo(): Unit {}
}
// FIR_COMPARISON