summaryrefslogtreecommitdiff
path: root/Zend/tests/assert/expect_empty_stmt_bug.phpt
blob: f5dcff3ba50d0b900973e46f912feb69000e8718 (plain)
1
2
3
4
5
6
7
8
9
10
11
--TEST--
Empty statement in assert() shouldn't segfault
--FILE--
<?php

assert((function () { return true;; })());
echo "ok";

?>
--EXPECT--
ok