mirror of
https://github.com/php/php-src.git
synced 2024-12-21 16:00:18 +08:00
11 lines
185 B
PHP
11 lines
185 B
PHP
--TEST--
|
|
Disallow list() usage as if it were an array
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(list(1, 2, 3));
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Parse error: syntax error, unexpected ')', expecting '=' in %s on line %d
|