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