blob: eb1fc0c1f0a7be8d8c90b3cc3e6dc1d54eaf8ede (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--TEST--
redefining constructor (__construct first)
--INI--
error_reporting=8191
--FILE--
<?php
class test {
function __construct() {
}
function test() {
}
}
echo "Done\n";
?>
--EXPECTF--
Strict Standards: Redefining already defined constructor for class test in %s on line %d
Done
|