blob: c7d1e876f541cdae444477cffaf5f49b72f43d63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--TEST--
redefining constructor (__construct first)
--INI--
error_reporting=8191
--FILE--
<?php
class test {
function __construct() {
}
function test() {
}
}
echo "Done\n";
?>
--EXPECT--
Done
|