diff options
author | Marcus Boerger <helly@php.net> | 2004-04-20 00:00:51 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-04-20 00:00:51 +0000 |
commit | dddbe6f60e8bf21b36da7a0b97e80df59d270a14 (patch) | |
tree | 5e33384b25fabd2329146439bb9af4533cf94e35 /tests/classes/interface_construct.phpt | |
parent | f726dc7af1c6eebd7968cf9ff31ee663c460e744 (diff) | |
download | php-git-dddbe6f60e8bf21b36da7a0b97e80df59d270a14.tar.gz |
Add new tests (by magnus)
Diffstat (limited to 'tests/classes/interface_construct.phpt')
-rwxr-xr-x | tests/classes/interface_construct.phpt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/classes/interface_construct.phpt b/tests/classes/interface_construct.phpt new file mode 100755 index 0000000000..406462e17a --- /dev/null +++ b/tests/classes/interface_construct.phpt @@ -0,0 +1,24 @@ +--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 + |