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.
 
 
 
 
 
 

24 lines
392 B

--TEST--
ZE2 An interface constructor signature must not be inherited
--SKIPIF--
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
--FILE--
<?php
error_reporting(4095);
interface test {
public function __construct($foo);
}
class foo implements test {
public function __construct() {
echo "foo\n";
}
}
$foo = new foo;
?>
--EXPECT--
foo