1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/Zend/tests/assert/expect_empty_stmt_bug.phpt
2018-07-26 12:38:22 +02:00

12 lines
143 B
PHP

--TEST--
Empty statement in assert() shouldn't segfault
--FILE--
<?php
assert((function () { return true; })());
echo "ok";
?>
--EXPECT--
ok