Updating submodules
[hiphop-php.git] / hphp / hack / test / typecheck / function_pointer / reified_targs.php
blob736da8ac1218f0ab68b10e7c8f98ce018837234a
1 <?hh
3 function foo<reify T>(T $x): T {
4 return $x;
7 function test(): (function(int): int) {
8 $y = foo<int>;
10 $y(4);
12 return $y;