xref: /php-src/Zend/tests/bug54804.phpt (revision 180146d4)
1--TEST--
2Bug #54804 (__halt_compiler and imported namespaces)
3--FILE--
4<?php
5namespace a;
6require __DIR__ . '/bug54804.inc';
7echo 'DONE';
8__halt_compiler();
9?>
10--EXPECT--
11DONE
12