php-src/Zend/tests/ns_083.phpt

15 lines
317 B
Plaintext
Raw Normal View History

2008-12-04 20:12:30 +00:00
--TEST--
083: bracketed namespace with junk before the ns declaration
--FILE--
<?php
$a = 'oops';
echo $a;
namespace foo {
}
namespace ok {
echo "ok\n";
}
?>
--EXPECTF--
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