1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 11:42:17 +02:00
Files
archived-php-src/Zend/tests/ns_080.phpt
2008-11-25 09:56:32 +00:00

15 lines
202 B
PHP

--TEST--
080: bracketed namespaces and __HALT_COMPILER();
--FILE--
<?php
namespace foo {
echo "hi\n";
}
__HALT_COMPILER();
namespace unprocessed {
echo "should not echo\n";
}
?>
===DONE===
--EXPECT--
hi