Disallow ... without type in function typehints
[hiphop-php.git] / hphp / hack / test / typecheck / null_check_partial2.php
blob6ab4d311bbc9a42529c9115de1772f28a132442f
1 <?hh // partial
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 class X {
13 public ?int $x;
15 public function foo(): int {
16 $obj = new X();
17 if($obj->x) {
18 return $obj->x;
20 return 0;