blob: b146d6a236f7f7fd8ea94eef49289831f9d85da5 (
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";
?>
--EXPECT--
Done
|