mirror of
https://github.com/php/php-src.git
synced 2024-12-21 16:00:18 +08:00
17 lines
170 B
PHP
17 lines
170 B
PHP
--TEST--
|
|
redefining constructor (__construct second)
|
|
--FILE--
|
|
<?php
|
|
|
|
class test {
|
|
function test() {
|
|
}
|
|
function __construct() {
|
|
}
|
|
}
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECT--
|
|
Done
|