Check for void/noreturn in conditionals
[hiphop-php.git] / hphp / hack / test / typecheck / method_dispatch_17.php
blobd7550537037fe4556a4784488ec5a723ec67ca74
1 <?hh // strict
2 /**
3 * Copyright (c) 2014, Facebook, Inc.
4 * All rights reserved.
6 * This source code is licensed under the BSD-style license found in the
7 * LICENSE file in the "hack" directory of this source tree. An additional grant
8 * of patent rights can be found in the PATENTS file in the same directory.
12 /**
13 * Hack treats method dispatch in a different way from PHP.
16 class A {
17 public function f1(): void {}
18 public static function f2(): void {}
21 class B extends A {
22 public function f1(): void {}
23 public static function f2(): void {}
24 public function test1(): void {}
25 public static function test2(A $x): void {
26 $x->f1();
30 class C {
31 public function f3(): void {}
32 public static function f4(): void {}