Fix issue with calling a unique, non-persistent method
[hiphop-php.git] / hphp / test / slow / hhbbc / jmp_local_009.php
bloba8a9074164b4f4be752469cfb97089f6b715bed1
1 <?php
3 class A {}
5 function foo($x) {
6 if ($x instanceof A) {
7 $y = "asd";
8 } else {
9 $y = "asd2";
12 var_dump($y);
15 foo();