Error on self::class on non final classes
[hiphop-php.git] / hphp / hack / test / typecheck / decl_default_var.php
blob2c48a1cf4ae966eed5059130460e9e24b4b15d69
1 //// base.php
2 <?hh // partial
3 /**
4 * Copyright (c) 2014, Facebook, Inc.
5 * All rights reserved.
7 * This source code is licensed under the MIT license found in the
8 * LICENSE file in the "hack" directory of this source tree.
13 abstract class Base {
14 private bool $b = false;
17 //// derived.php
18 <?hh // partial
20 class Derived extends Base {}