Annotation of embedaddon/php/Zend/tests/ns_083.phpt, revision 1.1.1.1

1.1       misho       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 in the script in %s on line %d

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>