1--TEST--
2Calling parse_str through argument unpacking
3--FILE--
4<?php
5
6function test() {
7    $i = 0;
8    parse_str(...["i=41"]);
9    var_dump($i + 1);
10}
11test();
12
13?>
14--EXPECTF--
15Deprecated: parse_str(): Calling parse_str() without the result argument is deprecated in %s on line %d
16int(42)
17