xref: /PHP-7.4/Zend/tests/bug54804.phpt (revision 6f3c7a8b)
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