Error on self::class on non final classes
[hiphop-php.git] / hphp / hack / test / typecheck / ambiguous_declaration_synthetic.php
blob19a81e9a82ea40d97ac2c7916d818ce933f7303c
1 <?hh // partial
3 class C {
4 public function foo(): void {}
6 trait T {
7 require extends C;
9 trait T2 {
10 require extends C;
12 class D extends C {
13 use T, T2;