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