diff options
Diffstat (limited to 'ext/opcache/tests/jit/assign_001.phpt')
-rw-r--r-- | ext/opcache/tests/jit/assign_001.phpt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/ext/opcache/tests/jit/assign_001.phpt b/ext/opcache/tests/jit/assign_001.phpt new file mode 100644 index 0000000000..8a17a4920f --- /dev/null +++ b/ext/opcache/tests/jit/assign_001.phpt @@ -0,0 +1,27 @@ +--TEST-- +JIT ASSIGN: 001 +--INI-- +opcache.enable=1 +opcache.enable_cli=1 +opcache.file_update_protection=0 +opcache.jit_buffer_size=1M +;opcache.jit_debug=257 +--SKIPIF-- +<?php require_once('../skipif.inc'); ?> +--FILE-- +<?php +function foo() { + $a = array(); + $b = $a; + $c = $a; + $a = 1; + $x = $a; + var_dump($x, $b, $c); +} +foo(); +--EXPECT-- +int(1) +array(0) { +} +array(0) { +} |