global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / hopt-partial-dse.php
blobd5ea523a03b406ce47fecf61aff3d21c388b17df
1 <?hh
3 $a = 't';
4 $b = 't';
5 $c = 't';
6 $a = 10;
7 $b = 9;
8 $c = 8;
10 var_dump($a and $b and $c);