php-src/Zend/tests/assert/expect_empty_stmt_bug.phpt
2015-07-16 22:31:36 +02:00

12 lines
144 B
PHP

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