Error on self::class on non final classes
[hiphop-php.git] / hphp / hack / test / typecheck / typing_fail_missing_cv_type.php
blob822ccf1223c7705eda6f0bf865ab1bbecde331e2
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 class Foo {
13 private $a;
14 protected $b;
15 public $c;
17 public function x(): int {
18 return $this->c;
21 public function x2(): string {
22 return $this->c;