php-src/Zend/tests/objects_011.phpt

19 lines
198 B
Plaintext
Raw Normal View History

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