1--TEST-- 2Dynamic properties deprecation 002 (memory leak) 3--FILE-- 4<?php 5set_error_handler(function($code, $msg){ 6 echo "Err: $msg\n"; 7 $GLOBALS['a']=null; 8}); 9$a = new class{}; 10try { 11 [&$a->y]; 12} catch (Throwable $ex) { 13 echo "Exception: " .$ex->getMessage() . "\n"; 14} 15?> 16--EXPECT-- 17Err: Creation of dynamic property class@anonymous::$y is deprecated 18Exception: Cannot create dynamic property class@anonymous::$y 19