summaryrefslogtreecommitdiff
path: root/Zend/tests/bug70241.phpt
blob: 74218e9bf9beddcea46ab1cc842959939a218c4b (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)