New inference: improved error message for unresolved type
[hiphop-php.git] / hphp / hack / test / typecheck / lsb_disallow_override_public.php
blob406e92c72857df2e344ebba98964f6e94385248c
1 <?hh // strict
3 class A {
4 <<__LSB>> public static int $x = 0;
7 class B extends A {
8 public static int $x = 1;