mirror of
https://github.com/php/php-src.git
synced 2025-01-17 17:23:47 +08:00
15 lines
202 B
Plaintext
15 lines
202 B
Plaintext
|
--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
|