Add binary field to deepcopy test
[hiphop-php.git] / hphp / test / quick / hh_softtype4.php
blobe0a16a4bb2a01da4abe5de3a282b02a6e1f49cdf
1 <?hh
3 function foo(<<__Soft>> (int, int) $x) :mixed{}
4 <<__EntryPoint>> function main(): void {
5 foo(null);
6 foo(vec[1,2]);
7 foo(vec[1,2,3]); // ok: typechecker validates it
8 foo(new stdClass);