Files
kotlin-fork/compiler/testData/asJava/lightClasses/nullabilityAnnotations/OverrideAnyWithUnit.kt
T
Dmitry Gridin 97ce502cbe [light classes] drop old light classes and backend: iteration #2
drop javaFileStub and fix tests

^KT-48773
2022-06-28 11:44:39 +00:00

11 lines
114 B
Kotlin
Vendored

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