summaryrefslogtreecommitdiff
path: root/Zend/tests/ns_083.phpt
blob: 350b33559011eea03f32783e6f467ddd733c2680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--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