Error on self::class on non final classes
[hiphop-php.git] / hphp / hack / test / typecheck / lsb_disallow_override_subclass.php
blob2ee4444d3c18587fc4046e4c6daa27049ce3dd47
1 <?hh // strict
3 class A {
4 <<__LSB>> private static int $x = 0;
7 class B extends A {
10 class C extends B {
11 private static int $x = 1;