php-src/Zend/tests/fibers/throw-into-non-running-fiber.phpt
Aaron Piotrowski c276c16b66
Implement Fibers
RFC: https://wiki.php.net/rfc/fibers

Closes GH-6875.
2021-04-26 11:07:06 -05:00

17 lines
418 B
PHP

--TEST--
Throw into non-running fiber
--FILE--
<?php
$fiber = new Fiber(fn() => null);
$fiber->throw(new Exception('test'));
?>
--EXPECTF--
Fatal error: Uncaught FiberError: Cannot resume a fiber that is not suspended in %sthrow-into-non-running-fiber.php:%d
Stack trace:
#0 %sthrow-into-non-running-fiber.php(%d): Fiber->throw(Object(Exception))
#1 {main}
thrown in %sthrow-into-non-running-fiber.php on line %d