No error on use of `unsafe_cast`
[hiphop-php.git] / hphp / hack / test / typecheck / switch_local_type_change_after_break.php
blob73d517e16a19005bc615e111d7c73e9361177126
1 <?hh // strict
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 function f(): int {
13 $x = 1;
14 switch (1) {
15 case 1:
16 $x = "derp";
17 break;
18 $x = 2;
21 return $x;