php-src/Zend/tests/objects_010.phpt
2006-05-31 18:47:21 +00:00

20 lines
290 B
PHP

--TEST--
redefining constructor (__construct second)
--INI--
error_reporting=8191
--FILE--
<?php
class test {
function test() {
}
function __construct() {
}
}
echo "Done\n";
?>
--EXPECTF--
Strict Standards: Redefining already defined constructor for class test in %s on line %d
Done