Files
kotlin-fork/compiler/testData/asJava/lightClasses/nullabilityAnnotations/OverrideAnyWithUnit.kt
T
2015-05-12 19:43:17 +02:00

9 lines
95 B
Kotlin

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