20 lines
395 B
PHP
20 lines
395 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 TypeError: Generator::throw(): Argument #1 ($exception) must be of type Throwable, stdClass given in %s:%d
|
|
Stack trace:
|
|
#0 %s(%d): Generator->throw(Object(stdClass))
|
|
#1 {main}
|
|
thrown in %s on line %d
|