No error on use of `unsafe_cast`
[hiphop-php.git] / hphp / hack / test / typecheck / pipe_catch.php
blob928c808ca8812a83cff8d6ab4870b7813703bdf7
1 <?hh
2 // Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
4 function getit():int { return 32; }
5 <<__EntryPoint>>
6 function leaky():void {
7 try {
8 $x = getit() |> $$ / 0;
10 catch (Exception $_) {
11 echo($$);