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