Constraints for function arguments
[hiphop-php.git] / hphp / hack / test / shape_analysis / simplify_constraints / while3.php
blob13c9b4f0c39b9b5c1b611013d37c175bba9166b3
1 <?hh
3 function f(): void {
4 $d = dict['a' => 42];
5 $b = false;
6 while ($b) {
7 $d = dict['b' => 'h'];
9 $d['c'] = true;
10 inspect($d);
13 function inspect(mixed $_): void {}