Files
kotlin-fork/compiler/testData/asJava/lightClasses/nullabilityAnnotations/UnitAsGenericArgument.kt
T
2022-06-28 17:57:30 +02:00

10 lines
125 B
Kotlin
Vendored

// C
interface Base<T> {
fun foo(t: T): T
}
class C : Base<Unit> {
override fun foo(t: Unit) {}
}
// FIR_COMPARISON