Files
kotlin/compiler/testData/asJava/lightClasses/nullabilityAnnotations/UnitAsGenericArgument.kt

10 lines
130 B
Kotlin
Vendored

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