--TEST-- SCCP 029: Don't propagate assignments to references to typed properties --INI-- opcache.enable=1 opcache.enable_cli=1 opcache.optimization_level=-1 opcache.preload= --SKIPIF-- --FILE-- x =& $ref; $ref = 42; var_dump($ref); } test(); ?> --EXPECT-- string(2) "42"