global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / no_more_id_clone.php
blob4055f890c270ae08e41a3d4160bc5fc0b889218a
1 <?hh
3 class A {
4 public function b() {
5 return 'c';
8 $d = new A;
9 var_dump((clone $d)->b());