Support is and as
[hiphop-php.git] / hphp / hack / test / autocomplete / shape_keys_double_quote.php
blob930c261f9de4b3ce105483013da40556b4585b73
1 <?hh
3 type Foo = shape(
4 'a_abc' => string,
5 'a_def' => string,
6 'b_abc' => int,
7 );
9 function foo(Foo $in): void {
10 var_dump($in["a_AUTO332]);