Files
kotlin-fork/compiler/testData/constraintSystem/declarations/declarations.kt
T
Svetlana Isakova db8085c399 Incorporation tests
2015-07-10 15:05:05 +03:00

13 lines
189 B
Kotlin
Vendored

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