Implement support for binary-number syntax
[hiphop-php.git] / hphp / test / slow / hh_namespace_migration / hh_set / hh_set4.php
blob7f53f797f2fef1970c66a469f4583cac1c65b34e
1 <?hh
3 // Test that we can define our own custom Set class
4 // as long as we're not in the top-level namespace.
6 namespace Test;
8 class Set {
9 public function __construct() {
10 echo "Custom Set\n";
14 function main() {
15 $custom_set = new Set();
18 main();