function_outside_namespace.phpt 284 B

123456789101112
  1. --TEST--
  2. Function declaration should not be allowed before namespace declaration
  3. --FILE--
  4. <?php
  5. function foo() {}
  6. namespace Bar;
  7. ?>
  8. --EXPECTF--
  9. Fatal error: Namespace declaration statement has to be the very first statement or after any declare call in the script in %s on line %d