Constraints for function arguments
[hiphop-php.git] / hphp / hack / test / shape_analysis / simplify_constraints / parameter3.php
blob1e4ac7021daed4170d0a00306ba59deaf9ca4b7d
1 <?hh
3 function f(dict<string, int> $d): void {
4 $d = dict[];
5 $d['k'] = 42;
6 inspect($d);
9 function inspect(mixed $_): void {}