Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
946dff8bda9fd326d2b6c18f10c7545ebed12ae1
/
.
/
compiler
/
testData
/
asJava
/
lightClasses
/
nullabilityAnnotations
/
OverrideAnyWithUnit.kt
blob: 9915f6225bd807ac19a8d4d50d24fef0e874fc8b [
file
]
// C
interface
Base
{
fun foo
():
Any
}
class
C
:
Base
{
override
fun foo
():
Unit
{}
}