Fix memoization of functions called with keyset arguments
[hiphop-php.git] / hphp / test / quick / exit.php
blob0133b05eb8a2a2295a2a81636f06eef87f4eaf7c
1 <?php
3 function g() {
4 exit;
5 $x = exit;
6 exit(0);
7 $x = exit(0);
8 exit + 3;
9 $x = exit + 3;
10 exit(1) + 3;
11 $x = exit(1) + 3;
12 f($x, exit($x), $x + 1);
15 call_user_func("g");