mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
11 lines
143 B
PHP
11 lines
143 B
PHP
--TEST--
|
|
Empty statement in assert() shouldn't segfault
|
|
--FILE--
|
|
<?php
|
|
|
|
assert((function () { return true; })());
|
|
echo "ok";
|
|
|
|
?>
|
|
--EXPECT--
|
|
ok
|