php-src/tests/classes/interface_construct.phpt
2004-04-20 00:00:51 +00:00

25 lines
392 B
PHP
Executable File

--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