No error on use of `unsafe_cast`
[hiphop-php.git] / hphp / hack / test / typecheck / anon16.php
blobe8d7e6f8383d3d7c8f7225f2c25e9cea587a28b9
1 <?hh // strict
3 function expect_mixed_func((function(): mixed) $func): void {}
5 function test(): void {
6 $func = (): int ==> 1;
7 expect_mixed_func($func);