Disallow ... without type in function typehints
[hiphop-php.git] / hphp / hack / test / typecheck / meth_caller10.php
blob56a5fc3687f101226d7cf217af7645695a731f03
1 <?hh // strict
3 class X<T> {
4 public function foo(T $x): T {
5 return $x;
9 function test(): X<int> {
10 $caller = meth_caller('X', 'foo');
11 $x = new X();
12 $caller($x, 'a string');
13 return $x;