global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / fc_enum_3.php
blobac58e5c13ebb9724ddb4d7a847787c6024f31092
1 <?hh // strict
3 // Make sure we can't instantiate enums
5 enum Bar : int {
6 FOO = 1;
7 BAR = 2;
8 BAZ = 3;
11 function test(): Bar {
12 return new Bar();
15 var_dump(test());