Error on self::class on non final classes
[hiphop-php.git] / hphp / hack / test / typecheck / abstract_tconst_not_allowed_duplicate_trait.php
blob7211eaef10b069747484926a3ba87ef7846640a9
1 <?hh
2 // Copyright 2004-present Facebook. All Rights Reserved.
4 abstract class A {
5 abstract const type T;
8 trait MyTrait {
9 public function foo(A::T $_): void {}
12 class B {
13 use MyTrait;