Check for void/noreturn in conditionals
[hiphop-php.git] / hphp / hack / test / typecheck / anonymous_shape2.php
blob97036d82a17b0692d1f1d481584e4cb1a694e5af
1 <?hh //strict
3 /**
4 * Anonymous shape return type
5 */
7 function f(): shape('x' => int) {
8 return shape('x' => 4);
11 function test(
12 ): shape(
13 'y' => int,
14 ...
15 ) {
16 return f();