Add type parameters to linearization
[hiphop-php.git] / hphp / hack / test / mro / type_params.php
blob9510a5a354cdaf9a51c0113694f075f0c3d8cb60
1 <?hh
3 interface Ico<+T> {}
6 interface I2 extends Ico<mixed> {}
8 interface I3 extends I2, Ico<num> {}
10 interface I4 extends I3, Ico<int> {}