php-src/Zend/tests/generators/send_after_close.phpt
2012-05-29 18:01:08 +02:00

15 lines
163 B
PHP

--TEST--
Calls to send() after close should do nothing
--FILE--
<?php
function *gen() { }
$gen = gen();
$gen->send("Test");
?>
===DONE===
--EXPECT--
===DONE===