summaryrefslogtreecommitdiff
path: root/Zend/tests/bug70241.phpt
blob: bc3729982fdf7ee52e7dcf680764a552fc3f0d08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
Bug #70241 (Skipped assertions affect Generator returns)
--INI--
zend.assertions=-1
--FILE--
<?php

function foo () {
    assert(yield 1);
    return null;
}

var_dump(foo() instanceof Generator);

?>
--EXPECT--
bool(true)