Fix nullable field type checking for Shapes::idx
[hiphop-php.git] / hphp / hack / test / typecheck / shape / shape_idx_optional_field_with_nullable_default_return.php
bloba1bc664186317c6da58ffae79b2146baa27a53d7
1 <?hh // strict
3 // Error: should be ?int
4 function shape_idx_optional_field_with_nullable_default_return(
5 shape(?'x' => int) $s,
6 ?int $default,
7 ): int {
8 return Shapes::idx($s, 'x', $default);