You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
356 B

--TEST--
Different numbers of arguments in __construct()
--FILE--
<?php
interface foobar {
function __construct();
}
abstract class bar implements foobar {
public function __construct($x = 1) {
}
}
final class foo extends bar implements foobar {
public function __construct($x = 1, $y = 2) {
}
}
new foo;
print "ok!";
?>
--EXPECT--
ok!