blob: 13e2f54b099f2eea61b26dae9ed889581b6f7fd1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
--TEST--
Bug #60099 (__halt_compiler() works in braced namespaces)
--FILE--
<?php
namespace foo {
__halt_compiler();
?>
--EXPECTF--
Fatal error: __HALT_COMPILER() can only be used from the outermost scope in %s on line %d
|