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