|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2016-01-24 18:52 UTC] bwoebi@php.net
-Status: Open
+Status: Assigned
-Assigned To:
+Assigned To: bwoebi
[2016-01-24 18:55 UTC] bwoebi@php.net
[2016-01-24 18:55 UTC] bwoebi@php.net
-Status: Assigned
+Status: Closed
[2016-01-24 18:55 UTC] bwoebi@php.net
[2016-07-20 11:33 UTC] davey@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 08 13:00:01 2025 UTC |
Description: ------------ Returns in try/finally in Generators with typehint modify the FAST_CALL opcode (which is next to VERIFY_RETURN), hence it crashes (or may behave strangely if executed). Test script: --------------- function (): \Generator { try { $foo = 1; return yield $foo; } finally { print "Ok\n"; } }; Expected result: ---------------- No crash / normal behavior