1--TEST-- 2JIT ASSIGN: Assign refcounted string (with result) 3--INI-- 4opcache.enable=1 5opcache.enable_cli=1 6opcache.file_update_protection=0 7opcache.jit_buffer_size=1M 8opcache.protect_memory=1 9;opcache.jit_debug=257 10--EXTENSIONS-- 11opcache 12--FILE-- 13<?php 14$n = 2; 15$a = $b = str_repeat('a', $n); 16var_dump($a, $b); 17?> 18--EXPECT-- 19string(2) "aa" 20string(2) "aa" 21