php-src/Zend/tests/errmsg_011.phpt
2018-10-14 12:07:20 -03:00

17 lines
204 B
PHP

--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