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
@@ -1,8 +1,8 @@
VARIABLES T P E
SUBTYPE T Producer<P>
SUBTYPE P Producer<E>
SUBTYPE E Producer<P>
T <: Producer<P>
P <: Producer<E>
E <: Producer<P>
type parameter bounds:
T <: Producer<P>*, <: Producer<Producer<E>>*, <: Producer<Producer<Producer<P>>>*