Files
kotlin-fork/compiler/testData/asJava/lightClasses/nullabilityAnnotations/OverrideAnyWithUnit.kt
T
2022-06-28 17:57:30 +02:00

11 lines
114 B
Kotlin
Vendored

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