diff options
author | Marcus Boerger <helly@php.net> | 2006-05-10 21:19:37 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2006-05-10 21:19:37 +0000 |
commit | 9745215cf8910222eb0c828d4cf329c7e9863840 (patch) | |
tree | 26e9b0b0320bbdfafeaed712d379444fbc0f5f17 /tests/classes/interface_construct.phpt | |
parent | 4df7ab403c3cb168047ce5bb14fbaf19e078b1fa (diff) | |
download | php-git-9745215cf8910222eb0c828d4cf329c7e9863840.tar.gz |
- MFH tests
Diffstat (limited to 'tests/classes/interface_construct.phpt')
-rwxr-xr-x | tests/classes/interface_construct.phpt | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/classes/interface_construct.phpt b/tests/classes/interface_construct.phpt deleted file mode 100755 index 406462e17a..0000000000 --- a/tests/classes/interface_construct.phpt +++ /dev/null @@ -1,24 +0,0 @@ ---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 - |