xref: /php-src/ext/opcache/tests/jit/concat_001.phpt (revision c16ad918)
1--TEST--
2JIT CONCAT: 001
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
13function foo($a, $b) {
14	return $a . $b;
15}
16var_dump(foo("a", "b"));
17var_dump(foo("a", 5));
18?>
19--EXPECT--
20string(2) "ab"
21string(2) "a5"
22