mirror of
https://github.com/php/php-src.git
synced 2024-12-21 16:00:18 +08:00
11 lines
201 B
PHP
11 lines
201 B
PHP
--TEST--
|
|
Bug #60099 (__halt_compiler() works in braced namespaces)
|
|
--FILE--
|
|
<?php
|
|
namespace foo {
|
|
__halt_compiler();
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Parse error: syntax error, unexpected end of file in %s on line %d
|