1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00
Files
archived-php-src/Zend/tests/errmsg_011.phpt
2018-10-14 19:45:12 +02: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