//!DIAGNOSTICS: -UNUSED_VARIABLE @Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE") fun List<@kotlin.internal.Exact T>.firstTyped(): U = throw Exception() fun test1(l: List) { val i: Int = l.firstTyped() val s: String = l.firstTyped() }