Make hhi_lib a filegroup target
[hiphop-php.git] / hphp / hack / test / sound_dynamic / typing / targeted_pessimisation / multifile.php
blob057d0d9cd4551d6481c3db3ccaa2a85eb1eeaf22
1 //// file1.php
2 <?hh
4 <<__SupportDynamicType>>
5 function f(shape() $s): void {
6 g($s);
9 function g(shape() $s): void {}
10 //// file2.php
11 <?hh
13 <<__SupportDynamicType>>
14 function ff(shape() $s): void {
15 gg($s);
18 function gg(shape() $s): void {}