mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
12 lines
176 B
PHP
12 lines
176 B
PHP
--TEST--
|
|
Bug #54804 (__halt_compiler and imported namespaces)
|
|
--FILE--
|
|
<?php
|
|
namespace a;
|
|
require __DIR__ . '/bug54804.inc';
|
|
echo 'DONE';
|
|
__halt_compiler();
|
|
?>
|
|
--EXPECT--
|
|
DONE
|