global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / fc_enum_8.php
blob1f4fb4515fde9ddd8ae548bad2e5aeb39eb70e95
1 <?hh
3 enum Foo : int as int {
4 FOO = 1;
5 BAR = 2;
6 BAZ = 2;
9 // Should fail
10 var_dump(Foo::getNames());