Files
kotlin/compiler/testData/asJava/lightClasses/nullabilityAnnotations/OverrideAnyWithUnit.kt
2014-06-24 15:54:11 +04:00

9 lines
91 B
Kotlin

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