global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / dtor-on-arr.php
blob10e9923116bf48efcc43a59dbd4cbd4e8f76fdd6
1 <?php
3 class C {
6 function f() {
7 if (array(new C())) {
8 echo "branch works\n";
9 } else {
10 echo "branch broken\n";
14 f();