mirror of
https://github.com/php/php-src.git
synced 2024-12-04 15:23:44 +08:00
15 lines
321 B
Plaintext
15 lines
321 B
Plaintext
|
--TEST--
|
||
|
A class can only implement interfaces
|
||
|
--SKIPIF--
|
||
|
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
|
||
|
--FILE--
|
||
|
<?php
|
||
|
class base {
|
||
|
}
|
||
|
|
||
|
class derived implements base {
|
||
|
}
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
Fatal error: derived cannot implement base - it is not an interface in %s on line %d
|