mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
15 lines
293 B
PHP
15 lines
293 B
PHP
--TEST--
|
|
errmsg: default value for parameters with array type can only be an array or NULL
|
|
--FILE--
|
|
<?php
|
|
|
|
class test {
|
|
function foo(array $a = "s") {
|
|
}
|
|
}
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Default value for parameters with array type can only be an array or NULL in %s on line %d
|