Error on self::class on non final classes
[hiphop-php.git] / hphp / hack / test / typecheck / interface_requires_abstract_final_class.php
blobb58d6d0f2ff23cbab9ba50ccdbea3a21a411b7cf
1 <?hh // strict
2 // Copyright 2004-present Facebook. All Rights Reserved.
4 abstract final class C {}
6 interface I {
7 require extends C;