Check for void/noreturn in conditionals
[hiphop-php.git] / hphp / hack / test / typecheck / method_dispatch_36.php
blobc2bb9b203a92a8ede2366a751da130aa43c609a6
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(A $x): void {
25 $x::f1();
27 public static function test2(): void {}
30 class C {
31 public function f3(): void {}
32 public static function f4(): void {}