Fix memoization of functions called with keyset arguments
[hiphop-php.git] / hphp / test / quick / no_more_id_clone.php
blob91510c9160473d7413d6a02bc4b471184a0a99f3
1 <?php
3 class A {
4 public function b() {
5 return 'c';
8 $d = new A;
9 var_dump((clone $d)->b());