Error on self::class on non final classes
[hiphop-php.git] / hphp / hack / test / typecheck / shape_modified7.php
blobcf4785c72722942c2a10467df56a97ceadcc7aca
1 <?hh // partial
3 type s = shape('x' => ?int);
5 function test(bool $b, s $s): int {
7 if ($b) {
8 $x = 5;
9 } else {
10 $x = 4;
13 if ($b) {
14 $s['x'] = $x;
17 return $x;