folly: fix github ci tests on macos arm
[hiphop-php.git] / hphp / hack / test / typecheck / this_inherit.php
blob0f0837962a7074e77b7d741dc42190bb2c450c1e
1 <?hh
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 Base {
13 public function foo(): this {
14 return $this;
18 class Child extends Base {
19 public function foo(): this {
20 return $this;