--TEST--
main function
--FILE--
<?php
function foo() {
var_dump(__FUNCTION__);
return;
}
function main()
{
foo();
?>
--EXPECT--
string(3) "foo"