Updating submodules
[hiphop-php.git] / hphp / test / slow / smultiprop-1.php
blob3c1cfe910c21d719de0e6485905acc683c6fcd32
1 <?hh
3 class C {
4 public static vec<int> $x = vec[];
5 public static vec<Foo> $y = vec[];
8 class Foo {}
10 <<__EntryPoint>>
11 function main() {
12 C::$x[] = 17;
13 C::$y[] = new Foo();
15 gc_collect_cycles();
17 var_dump(C::$x);
18 var_dump(C::$y);