Updating submodules
[hiphop-php.git] / hphp / hack / test / typecheck / function_pointer / class_meth_fcfp_abstract.php
blob81f04c1c6d37b6a84aa45434320dfa21e0347d6b
1 <?hh
3 abstract class Foo {
4 public abstract static function bar(): void;
7 function test(): void {
8 $_ = Foo::bar<>;