blob: 0f85498e2c9a00b1ba8206573e74eacd685b90b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--TEST--
redefining constructor (__construct second)
--FILE--
<?php
class test {
function test() {
}
function __construct() {
}
}
echo "Done\n";
?>
--EXPECTF--
Done
|