global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / hh_softtype4.php
blob1399b619d82b1120eb68d4dce36a13cdebc70c23
1 <?hh
3 function foo(@(int, int) $x) {}
5 foo(null);
6 foo(array(1,2));
7 foo(array(1,2,3)); // ok: typechecker validates it
8 foo(new stdclass);