Changed the way the constraints are written in tests

SUBTYPE T Int -> T <: Int
This commit is contained in:
Svetlana Isakova
2015-07-13 20:36:24 +03:00
parent d32ba08cb7
commit b162a65e85
254 changed files with 541 additions and 574 deletions
+14
View File
@@ -0,0 +1,14 @@
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>