db9577b140
Strict mode was the old name. Let's avoid any confusion in the future and rename things.
10 linhas
162 B
PHP
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";
|