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