folly: fix github ci tests on macos arm
[hiphop-php.git] / hphp / hack / test / typecheck / lsb_disallow_override_public.php
blobca1e667804ce0ab87cb18b294a1edc660f199996
1 <?hh
3 class A {
4 <<__LSB>> public static int $x = 0;
7 class B extends A {
8 public static int $x = 1;