xref: /PHP-8.1/ext/opcache/tests/jit/add_005.phpt (revision 34f1fdc0)
1--TEST--
2JIT ADD: 005
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7opcache.jit_buffer_size=32M
8;opcache.jit_debug=257
9--EXTENSIONS--
10opcache
11--FILE--
12<?php
13function foo($var) {
14  $res = $var + 2;
15  var_dump($res);
16}
17foo("hello");
18?>
19--EXPECTF--
20Fatal error: Uncaught TypeError: Unsupported operand types: string + int in %s:%d
21Stack trace:
22#0 %s(%d): foo('hello')
23#1 {main}
24  thrown in %s on line %d
25