Updating submodules
[hiphop-php.git] / hphp / hack / test / typecheck / function_pointer / class_meth_reified_targs_missing2.php
blob323ab198f81e7cbc3567dfbbd7e616869cec06ec
1 <?hh
3 final class Foo {
4 public static function bar<reify T, reify T2>(T $_): void {}
7 function test(): void {
8 $x = Foo::bar<int>;