Disallow ... without type in function typehints
[hiphop-php.git] / hphp / hack / test / typecheck / class_abstract_final_3.php
blob55715f2bd380187e84747e4f16876204036215e2
1 <?hh // partial
3 abstract final class Foo {
4 public static function bar() {}
7 class C extends Foo {}