Files
kotlin-fork/compiler/testData/diagnostics/tests/generics/argumentsForT.fir.kt
T

7 lines
129 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER
fun <T> foo(t: T<String, Int>) {}
interface A
class B<T: A>
fun <T> foo1(t: T<B<String>>) {}