e6d923f65c
Some of them should be INVISIBLE_MEMBER though
14 lines
353 B
Kotlin
Vendored
14 lines
353 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !LANGUAGE: +NewInference
|
|
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
@file:Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
|
|
|
|
annotation class Anno
|
|
|
|
fun test(a: List<Class<Anno>>) {
|
|
strictSelect(a, emptyList<Anno>().map { it.annotationClass.java })
|
|
}
|
|
|
|
fun <@kotlin.internal.OnlyInputTypes S> strictSelect(arg1: S, arg2: S): S = TODO()
|