mirror of
https://github.com/php/php-src.git
synced 2024-11-26 03:16:33 +08:00
17 lines
205 B
Plaintext
17 lines
205 B
Plaintext
|
--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
|