global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / property_exists.php
blob3f1b20d9fb35e4a35ac1a77f0aceab2d1bad80a2
1 <?hh
3 class Club {
4 protected $app_id = 0;
7 class Glub extends Club {
8 public function go() {
9 var_dump(property_exists($this, 'app_id'));
13 $g = new Glub();
14 $g->go();
15 var_dump(property_exists($g, 'app_id'));