Error on self::class on non final classes
[hiphop-php.git] / hphp / hack / test / typecheck / override_final.php
blobbf2c03412fc8aa1ec980126bc2140c363306e712
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.
13 class Foo {
14 final protected function f1(): void {
17 class Bar extends Foo {
18 protected function f1(): void {