xref: /PHP-7.4/Zend/tests/objects_010.phpt (revision 782352c5)
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