Updating submodules
[hiphop-php.git] / hphp / hack / test / typecheck / function_pointer / simple_function_pointer_targs_bad_mismatch2.php
blobf5b807ffccc29135738ecbb1f3f3f733c88b5908
1 <?hh
3 function foo<T, Ta>(T $arg): void {
6 function test(): void {
7 $x = foo<int>;
8 $x(4);