Handle this typehints
[hiphop-php.git] / hphp / test / slow / redefine-builtin.php
blob3e6eb068deb73a948584b163036b789f9e5ad0b2
1 <?hh
2 // Copyright 2004-present Facebook. All Rights Reserved.
4 echo "Shouldn't see me\n";
5 function extract() { echo "extract()\n"; }
6 function main() { extract(); }
7 main();