blob: 83f28b40f03af629de217277ca054273282c4409 [file]
// C
interface Base<T> {
fun foo(t: T): T
}
class C : Base<Unit> {
override fun foo(t: Unit) {}
}
// LAZINESS:NoLaziness
// FIR_COMPARISON