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

9 lines
95 B
Kotlin
Vendored

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