php-src/Zend/tests/objects_010.phpt
2018-10-14 12:07:20 -03:00

17 lines
170 B
PHP

--TEST--
redefining constructor (__construct second)
--FILE--
<?php
class test {
function test() {
}
function __construct() {
}
}
echo "Done\n";
?>
--EXPECT--
Done