add bitset operations and tests
[hiphop-php.git] / hphp / test / slow / unary_operators / 1439.php
blob35c9a3a03b07186aefd132426e005c7f9ebbfbbb
1 <?php
3 function test($x) {
4 switch ($x) {
5 case 1: $y = true;
6 case 2: var_dump(isset($y), $y);
9 test(2);