Fix issue with calling a unique, non-persistent method
[hiphop-php.git] / hphp / test / slow / hhbbc / jmp_local_003.php
blob058eb31866e2dc656efbd99951194f2ffc34e7bd
1 <?hh
3 function main(bool $x, bool $y) {
4 if ($x && $y) {
5 $z = $x == $y;
6 var_dump($z);
10 main(true, true);