add bitset operations and tests
[hiphop-php.git] / hphp / test / slow / goto / 1912.php
blob0cbd3f85387034f1a180049cd0e3f2640553e3aa
1 <?php
3 for($i=0,$j=50;
4 $i<100;
5 $i++) {
6 while($j--) {
7 if($j==17) goto end;
10 echo 'no';
11 end: echo 'yes';