Disallow ... without type in function typehints
[hiphop-php.git] / hphp / hack / test / typecheck / method_dispatch_09.php
blobf9d9e7476bfae69503b5f3c6043b0d44c95929a9
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 /**
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::f2();
30 class C {
31 public function f3(): void {}
32 public static function f4(): void {}