mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
16 lines
205 B
PHP
16 lines
205 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
|