func_get_args.phpt 255 B

1234567891011121314
  1. --TEST--
  2. Testing func_get_args() throws error when called from the global scope
  3. --FILE--
  4. <?php
  5. try {
  6. func_get_args();
  7. } catch (\Error $e) {
  8. echo $e->getMessage() . \PHP_EOL;
  9. }
  10. ?>
  11. --EXPECT--
  12. func_get_args() cannot be called from the global scope