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