summaryrefslogtreecommitdiff
path: root/Zend/tests/errmsg_013.phpt
blob: 74c7bc2e8efde8bd0df433601fb2ebb5d597aa55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--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: Cannot use string as default value for parameter $a of type array in %s on line %d