global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / setter-magic2.php
blob7492748435d7694ac82c360412617a52fb3cab11
1 <?hh
3 abstract final class SetterMagic2 {
4 public static $heh;
7 class Heh {
8 public function __set($k, $v) {
9 var_dump($k, $v);
10 test();
14 function test() {
15 SetterMagic2::$heh->prop = 3;
18 SetterMagic2::$heh = new Heh;
19 SetterMagic2::$heh->prop = 2;
20 var_dump(SetterMagic2::$heh);