Files
kotlin-fork/compiler/testData/constraintSystem/declarations.kt
T
Svetlana Isakova b162a65e85 Changed the way the constraints are written in tests
SUBTYPE T Int -> T <: Int
2015-07-13 21:57:59 +03:00

14 lines
216 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>
interface Fun<in T, out R>