No error on use of `unsafe_cast`
[hiphop-php.git] / hphp / hack / test / typecheck / try_finally_after_terminal_if.php
blob95083b5cee191c0cfa81a805899d5fb61fe81ab5
1 <?hh // strict
2 // Copyright 2004-present Facebook. All Rights Reserved.
4 function takes_int(int $x): void {}
6 function test(?string $x): void {
7 if ((int)$x === 0) {
8 return;
10 $x = (int)$x;
11 try {
12 } finally {
13 takes_int($x);