php-8.0.30-src/Zend/tests/objects_010.phpt

17 lines
182 B
PHP

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