503f75d08b
These names don't make sense now that we run both suites the same way.
15 linhas
281 B
PHP
15 linhas
281 B
PHP
<?php
|
|
function foo() { return "hello"; }
|
|
function bar() { return "goodbye"; }
|
|
function test() {
|
|
var_dump(fb_call_user_func_safe_return('foo', 0));
|
|
}
|
|
function main() {
|
|
test();
|
|
fb_rename_function('foo', 'baz');
|
|
test();
|
|
fb_rename_function('bar', 'foo');
|
|
test();
|
|
}
|
|
main();
|