xref: /php-src/Zend/tests/objects_010.phpt (revision f8d79582)
1--TEST--
2redefining constructor (__construct second)
3--FILE--
4<?php
5
6class test {
7    function test() {
8    }
9    function __construct() {
10    }
11}
12
13echo "Done\n";
14?>
15--EXPECT--
16Done
17