removed unnecessary subdirectories in test/slow/hh_namespace_migration
[hiphop-php.git] / hphp / test / slow / hh_namespace_migration / hh_frozenset6.php
blobdffd120eb7685b85fdd0d19f59cf1d0d0835a5a3
1 <?hh
3 // Test that FrozenSet can be accessed through its fully-qualified name.
5 function main() {
6 $s = HH\FrozenSet { 1, 2, 3 };
7 $s2 = \HH\FrozenSet { 4, 5 };
8 var_dump($s->count());
9 var_dump($s2->count());
12 main();