summaryrefslogtreecommitdiff
path: root/Zend/tests/errmsg_011.phpt
blob: 9cfde0f8bbd1a66c09d04567941a4bf9197efdc4 (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