Fix memoization of functions called with keyset arguments
[hiphop-php.git] / hphp / test / quick / interface10.php
blob3068db24a448ef041b4dd1353184988f88533eba
1 <?php
3 print "Test begin\n";
5 interface I {
6 public function a(array $a = null);
8 class C implements I {
9 public function a(array $a) {}
12 print "Test end\n";