sync the repo
[hiphop-php.git] / hphp / hack / test / typecheck / function_pointer / explicit_targs.php
blobe3175ba671d378c305d1ff30a249c2e2d87e8cfe
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<>;