TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
344 B
22 lines
344 B
--TEST--
|
|
A namespace block ending with a comment must not be treated as stray code
|
|
--FILE--
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Test {
|
|
/* named namespace trailing block comment */
|
|
}
|
|
|
|
namespace {
|
|
function main()
|
|
{
|
|
var_dump('done');
|
|
}
|
|
|
|
// global namespace trailing line comment
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
string(4) "done"
|
|
|