1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 19:23:22 +02:00
Files
archived-php-src/Zend/tests/generators/throw_not_an_exception.phpt
T
2015-05-17 17:31:43 -05:00

21 lines
387 B
PHP

--TEST--
Generator::throw() with something that's not an exception
--FILE--
<?php
function gen() {
yield;
}
$gen = gen();
$gen->throw(new stdClass);
?>
--EXPECTF--
Fatal error: Uncaught Error: Cannot throw objects that do not implement Throwable in %s:%d
Stack trace:
#0 [internal function]: gen()
#1 %s(%d): Generator->throw(Object(stdClass))
#2 {main}
thrown in %s on line %d