|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2020-01-28 09:45 UTC] nikic@php.net
[2020-01-28 09:45 UTC] nikic@php.net
-Status: Open
+Status: Closed
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 14:00:01 2025 UTC |
Description: ------------ Delayed variance checks may crash when traits are involved. I believe this is because we keep around a zend_function pointer to a zend_function that only exists temporarily. Test script: --------------- <?php class X { function method($a): T {} } trait T { function method($r): B {} } class U extends X { use T; }