Error on self::class on non final classes
[hiphop-php.git] / hphp / hack / test / typecheck / no_error_unset_union.php
blobf97f9208ee6a49b83c1ba9f2a00d108715c10ed0
1 <?hh // strict
3 function test_unset(bool $cond): void {
4 $container = $cond ? keyset[1] : dict[1 => 'One'];
5 unset($container[1]);