php-src/Zend/tests/objects_010.phpt
2020-02-03 22:52:20 +01:00

17 lines
182 B
PHP

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