No error on use of `unsafe_cast`
[hiphop-php.git] / hphp / hack / test / typecheck / anon17.php
blobf9f5b681be2ada7f125eaee63dac473b3ebd25d6
1 <?hh // strict
3 function expects_vec_func_str(Vector<(function(): string)> $vec): void {}
5 function test(): void {
6 $funcs = Vector { () ==> 1.0, () ==> 0, () ==> '' };
8 expects_vec_func_str($funcs);