global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / class_constants-1.inc
blobbe3d27838c829bee2169cb4e666a23344c2c3d05
1 <?hh
3 class Y {
4   const BAR = X::BAZ;
6 class Z extends X {
7   const FOO = 6;
8   const WIZ = W::WIZ;
11 $x = 1;