improve Shapes::idx / Shapes::idx lint by underlining invalid property
[hiphop-php.git] / hphp / hack / test / error_formatting_highlighted_raw_color / required_field_optional.php
blobc6149b118752350e32d99ca71e069912d12fcae7
1 <?hh
3 type my_shape = shape(
4 'x' => int,
5 'y' => bool,
6 );
8 function foo(bool $cond): my_shape {
9 $s = shape('x' => 0);
10 if ($cond) {
11 $s['y'] = true;
13 return $s;