Updating submodules
[hiphop-php.git] / hphp / hack / test / typecheck / function_pointer / explicit_targs3.php
blob976958d8106c64299ceb3fedb3391a0078c4e77d
1 <?hh
3 function values_are_equal<<<__Explicit>> T>(T $x, T $y): bool {
4 return $x === $y;
7 function test(): void {
8 $x = values_are_equal<int>;