Support is and as
[hiphop-php.git] / hphp / hack / test / autocomplete / enum_value_fun_arg.php
blob7926af2bd5d8f96ff9396ded6bcfee6fd9b12381
1 <?hh
3 enum MyEnum: string {
4 TYPE_A = "A value";
5 TYPE_B = "B value";
6 TYPE_C = "C value";
9 function takes_enum(MyEnum $_): void {}
11 function demo(): void {
12 // We should only offer concrete values here, not e.g. MyEnum::getValues().
13 takes_enum(MyEnum::AUTO332);