Fix memoization of functions called with keyset arguments
[hiphop-php.git] / hphp / test / quick / ns_existing_names_class.php
blobf9717938d5fc28ffcb2e01d46f2d890a17c5a301
1 <?php
3 namespace A;
4 class Cl { public function __construct() { return "a"; } }
6 namespace B;
7 class Cl { public function __construct() { return "b"; } }
8 use A\Cl;