summaryrefslogtreecommitdiff
path: root/Zend/tests/errmsg_011.phpt
blob: ac29c6e0810fcb0aefd77e9ae70c517de03f4cd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
errmsg: cannot redeclare (method)
--FILE--
<?php

class test {

    function foo() {}
    function foo() {}

}

echo "Done\n";
?>
--EXPECTF--
Fatal error: Cannot redeclare test::foo() in %s on line %d