Removed tuples from type checker test.

This commit is contained in:
Evgeny Gerashchenko
2013-03-18 22:01:15 +04:00
parent bf28ce155d
commit ffb67d3a1f
2 changed files with 4 additions and 43 deletions
+2
View File
@@ -1,5 +1,7 @@
package testData
class Pair<out A, out B> (val first: A, val second: B}
open class Base_T<T>()
open class Derived_T<T>() : Base_T<T>
open class DDerived_T<T>() : Derived_T<T>