ns_083.phpt 317 B

1234567891011121314
  1. --TEST--
  2. 083: bracketed namespace with junk before the ns declaration
  3. --FILE--
  4. <?php
  5. $a = 'oops';
  6. echo $a;
  7. namespace foo {
  8. }
  9. namespace ok {
  10. echo "ok\n";
  11. }
  12. ?>
  13. --EXPECTF--
  14. Fatal error: Namespace declaration statement has to be the very first statement or after any declare call in the script in %sns_083.php on line %d