mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
16 lines
297 B
PHP
16 lines
297 B
PHP
--TEST--
|
|
array unpacking with undefined variable
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump([...$arr]);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Undefined variable $arr in %s on line %d
|
|
|
|
Fatal error: Uncaught Error: Only arrays and Traversables can be unpacked, null given in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|