1--TEST--
2JIT SEND_VAL: 002 named arg
3--INI--
4opcache.enable=1
5opcache.enable_cli=1
6opcache.file_update_protection=0
7opcache.jit_buffer_size=1M
8--FILE--
9<?php
10function o(){
11    var_dump(x:$x?1:0);
12}
13o();
14?>
15--EXPECTF--
16Warning: Undefined variable $x in %ssend_val_002.php on line 3
17
18Fatal error: Uncaught ArgumentCountError: var_dump() expects at least 1 argument, 0 given in %ssend_val_002.php:3
19Stack trace:
20#0 %ssend_val_002.php(3): var_dump(x: 0)
21#1 %ssend_val_002.php(5): o()
22#2 {main}
23  thrown in %ssend_val_002.php on line 3
24