Disallow ... without type in function typehints
[hiphop-php.git] / hphp / hack / test / typecheck / fun_contra.php
blobb6901071f41c2c450d690308798c9e88bf362545
1 <?hh // strict
2 // Copyright 2004-present Facebook. All Rights Reserved.
4 function TakeFun((function(int): arraykey) $f): void {
5 ($f)(3);
7 function Pass((function(arraykey): int) $g): void {
8 TakeFun($g);
10 function DoIt(): void {
11 Pass((arraykey $x) ==> 5);
13 /* HH_FIXME[1002] */
14 DoIt();