Make too few args throw instead of log
[hiphop-php.git] / hphp / test / slow / hhbbc / jmp_local_008.php
blob2763b408f4a0724f16a74f5ad5903563a5b9816e
1 <?php
3 function foo() {
4 var_dump($x);
5 if (is_string($x)) {
6 $y = "asd";
7 } else {
8 $y = "asd2";
11 var_dump($y);
15 <<__EntryPoint>>
16 function main_jmp_local_008() {
17 foo();