sync the repo
[hiphop-php.git] / hphp / hack / test / typecheck / lambda_in_pipe.php
blobbb6148b16902ef7d86e7245c99e243a2b9801354
1 <?hh
2 // Copyright 2004-present Facebook. All Rights Reserved.
4 function vec_filter(vec<int> $v, (function (int): bool) $_f): vec<int> {
5 return $v;
8 function test(vec<int> $v): vec<int> {
9 return $v |> vec_filter($$, function ($x) { return true; });