Arquivos
hhvm/hphp/test/quick/hh_functions2.php
T
Tim Starling 998951619f update copyright date
We did not intend to imply our copyrights last forever

Closes #759
2013-06-03 12:43:56 -07:00

10 linhas
159 B
PHP

<?hh
// Copyright 2004-2013 Facebook. All Rights Reserved.
function toto(mixed $x, ...): int {
return (int)$x;
}
echo toto(1), "\n";
echo toto("1"), "\n";