Disallow ... without type in function typehints
[hiphop-php.git] / hphp / hack / test / typecheck / list_assign.php
blobc11ac1ee54848c7674fc78e7b238c54eb2a9a965
1 <?hh // strict
3 function test<T as Vector<int>>(Vector<int> $vec, T $list): (int, int) {
4 list($x, $y) = $vec;
5 hh_show($x);
6 hh_show($y);
8 list($i1, $i2) = $list;
9 hh_show($i1);
10 hh_show($i2);
12 return tuple($i1, $i2);