New inference: improved error message for unresolved type
[hiphop-php.git] / hphp / hack / test / typecheck / class_meth_no_typedef.php
blob9a0e41f6b5f1d1a70c3b3c21e09a0d21df53956a
1 <?hh // partial
3 class Foo {
4 public static function f(): void {}
7 type Bar = Foo;
9 function f(): (function(): void) {
10 return class_meth('Bar', 'f');