Untyped variadic function types should not be permitted in strict mode
[hiphop-php.git] / hphp / hack / test / typecheck / reactive / test_global_class.php
blob0ad52f27f5e897b2640ad7ca356a6e40085b5e1c
1 <?hh // strict
3 class GlobalClassName {
4 public static int $x = 0;
8 <<__Rx>>
9 function foo(): void {
10 $y = GlobalClassName::$x + 1;