5b9c35de2e
#KT-61129 Fixed
12 lines
308 B
Kotlin
Vendored
12 lines
308 B
Kotlin
Vendored
// !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()
|