Files
kotlin-fork/compiler/testData/constraintSystem/declarations/declarations.kt
T
2015-05-12 19:43:17 +02:00

10 lines
137 B
Kotlin
Vendored

fun foo<T, P: T>() = 42
interface A
interface B : A
interface C : B
interface Consumer<in T>
interface Producer<out T>
interface My<T>