summaryrefslogtreecommitdiff
path: root/Zend/tests/func_get_args.phpt
blob: 33cfdb02ebcd285f24dd7f6a5d7c396d34cbec1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Testing func_get_args() throws error when called from the global scope
--FILE--
<?php

try {
    func_get_args();
} catch (\Error $e) {
    echo $e->getMessage() . \PHP_EOL;
}

?>
--EXPECT--
func_get_args() cannot be called from the global scope