Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
946dff8bda9fd326d2b6c18f10c7545ebed12ae1
/
.
/
compiler
/
testData
/
asJava
/
lightClasses
/
nullabilityAnnotations
/
UnitAsGenericArgument.kt
blob: a4ecf3d1916f5956b86992ecb92ebdcd95305077 [
file
]
// C
interface
Base
<
T
>
{
fun foo
(
t
:
T
):
T
}
class
C
:
Base
<
Unit
>
{
override
fun foo
(
t
:
Unit
)
{}
}