Fix memoization of functions called with keyset arguments
[hiphop-php.git] / hphp / test / quick / regpressure2.php
blobd5b19b37283c998a5b6d27e251777239c7f577b0
1 <?php
3 function test() {
4 $a = 1;
5 $b = 2;
6 $c = 3;
7 $d = 4;
8 $e = 5;
9 $f = 6;
10 $g = 7;
11 $h = 8;
12 $i = 9;
13 $j = 10;
14 $k = 11;
15 function foo() {}
16 class bar {}
17 var_dump($a, $b, $c, $d, $e, $f, $g, $h, $i, $j, $k);
20 test();