1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-04 02:07:59 +01:00
PHP-Parser/test/code/parser/stmt/function/variadicDefaultValue.test

27 lines
564 B
Plaintext
Raw Normal View History

Invalid variadic function
-----
<?php
function foo(...$foo = []) {}
-----
2015-04-18 21:20:45 +02:00
Variadic parameter cannot have a default value from 2:24 to 2:25
array(
0: Stmt_Function(
byRef: false
name: foo
params: array(
0: Param(
type: null
byRef: false
variadic: true
name: foo
default: Expr_Array(
items: array(
)
)
)
)
returnType: null
stmts: array(
)
)
)