1--TEST--
2xxh3 convert secret to string should not modify (shm) array
3--FILE--
4<?php
5try {
6	hash_init("xxh3", options: $x = ["secret" => 4]);
7} catch (Throwable) {}
8var_dump($x);
9?>
10--EXPECT--
11array(1) {
12  ["secret"]=>
13  int(4)
14}
15