ru_php/Zend/tests/assert/expect_empty_stmt_bug.phpt

12 lines
143 B
Plaintext
Raw Permalink Normal View History

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