php-src/Zend/tests/objects_010.phpt

17 lines
172 B
Plaintext
Raw Normal View History

2006-05-31 18:47:21 +00:00
--TEST--
redefining constructor (__construct second)
--FILE--
<?php
class test {
function test() {
}
function __construct() {
}
}
echo "Done\n";
?>
--EXPECTF--
Done