Arquivos
hhvm/hphp/test/quick/hh_functions2.php
T
Alok Menghrajani db9577b140 Rename strict with Hack
Strict mode was the old name. Let's avoid any confusion in the future and rename things.
2013-05-15 13:05:03 -07:00

10 linhas
162 B
PHP

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