Check for void/noreturn in conditionals
[hiphop-php.git] / hphp / hack / test / typecheck / pipe_operator_unused_dollardollar.php
blobd253d39d8cce41632b0702373d5816eb68684704
1 <?hh
3 function foo(): int {
4 return 1;
7 function bar(): int {
8 return 2;
11 function piped(): int {
12 return foo() |> bar();