blob: a5cfe69f0cc2e137f68d24bc2bfebd38cbac1665 (
plain)
1
2
3
4
5
6
7
8
9
10
|
--TEST--
Disallow list() usage as if it were an array
--FILE--
<?php
var_dump(list(1, 2, 3));
?>
--EXPECTF--
Parse error: syntax error, unexpected token ")", expecting "=" in %s on line %d
|