No error on use of `unsafe_cast`
[hiphop-php.git] / hphp / hack / test / typecheck / erling_loop.php
blobf406c22287a27728f93516a5fcaf91b337c22d55
1 <?hh // partial
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 test(): int {
13 $x = 0;
14 $y = 1;
15 $z = 2;
16 for ($i = 0; $i < 3; $i++) {
17 $x = $y;
18 $y = $z;
19 $z = 'hello';
21 return $x;