| Current Path : /hdd/hdd21/main/php5/php-5.6.6/Zend/tests/ |
| Current File : //hdd/hdd21/main/php5/php-5.6.6/Zend/tests/ns_080.phpt |
--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