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