Disallow ... without type in function typehints
[hiphop-php.git] / hphp / hack / test / typecheck / method_redeclaration_contravariant_param_error.php
blob2f3bbf635852db89c086119428e852d120d5ed24
1 <?hh // strict
3 trait T1 {
4 public function f(int $i): int {
5 return 4;
9 class C {
10 use T1;
12 public function f(num $k): num = T1::f;