summaryrefslogtreecommitdiff
path: root/Zend/tests/objects_011.phpt
blob: cd33604f2484194c8f77dec811e622692ba8cfdf (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