Files
kotlin-fork/compiler/testData/asJava/lightClasses/lightClassByFqName/nullabilityAnnotations/UnitAsGenericArgument.kt
T

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