Disallow ... without type in function typehints
[hiphop-php.git] / hphp / hack / test / typecheck / intersect_null2.php
blobefcad95838472f975e0f42264af5ea7328134058
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 function someint(): int {
14 return 2;
18 class Foo {
19 private ?X $x;
21 public function test(): int {
22 $y = new X();
23 if ($y->someint()) {
26 $this->x = $y;
27 return $y->someint();