Add SetModule and fd_module defs
[hiphop-php.git] / hphp / hack / test / tast / global_inference / params / type_hint_parameter_survive_assignment.php
bloba6ac45b3843ec8ec54dc23c781b0eebc6b98dfbd
1 <?hh
3 function foo($x): void {
4 $y = $x;
5 bar($y);
8 function bar(int $_): void {}