add bitset operations and tests
[hiphop-php.git] / hphp / test / slow / goto / 1911.php
blob5ecb17f7670d7a95c9c8b3e65bb2253e80631cc9
1 <?php
3 function foo() {
4 goto a;
5 b: echo 'Foo';
6 return;
7 a: echo 'Bar';
8 goto b;
10 foo();