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