No error on use of `unsafe_cast`
[hiphop-php.git] / hphp / hack / test / typecheck / test_michal2.php
blobe1a27df813c078c16929fd5e6e8ce68a827b89db
1 <?hh // strict
2 /**
3 * Copyright (c) 2014, Facebook, Inc.
4 * All rights reserved.
6 * This source code is licensed under the MIT license found in the
7 * LICENSE file in the "hack" directory of this source tree.
12 function test(?int $x): int {
13 if ($x !== null) {
14 $x = null;
16 return $x;