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

19 lines
210 B
PHP

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