998951619f
We did not intend to imply our copyrights last forever Closes #759
10 linhas
159 B
PHP
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";
|