xref: /PHP-5.5/Zend/tests/objects_011.phpt (revision d98de7d2)
1--TEST--
2redefining constructor (__construct first)
3--INI--
4error_reporting=8191
5--FILE--
6<?php
7
8class test {
9	function __construct() {
10	}
11	function test() {
12	}
13}
14
15echo "Done\n";
16?>
17--EXPECT--
18Done
19