no unique F14Chunk empty-tag-vector instance
[hiphop-php.git] / hphp / test / slow / redefine-builtin.php
blob1895daa261bafb86abe153e6ee98401d80dc143b
1 <?hh
2 function parse_str() :mixed{ echo "parse_str()\n"; }
3 function main() :mixed{ parse_str(); }
5 // Copyright 2004-present Facebook. All Rights Reserved.
7 <<__EntryPoint>>
8 function main_redefine_builtin() :mixed{
9 echo "Shouldn't see me\n";
10 main();