sync the repo
[hiphop-php.git] / hphp / hack / test / typecheck / fun_typedef.php
blob0462e2a9e1fd0f379a8772af024a3d7595c3a652
1 <?hh
2 /**
3 * Copyright (c) 2014, Facebook, Inc.
4 * All rights reserved.
6 * This source code is licensed under the MIT license found in the
7 * LICENSE file in the "hack" directory of this source tree.
12 type X = (function(): int);
14 function useX(X $x): int {
15 do {
16 return $x();
17 if (true) {
19 } while (true);
20 return 0;