mirror of
https://github.com/php/php-src.git
synced 2025-08-17 22:48:57 +02:00
10 lines
201 B
PHP
10 lines
201 B
PHP
--TEST--
|
|
Trying to inherit a class in an interface
|
|
--FILE--
|
|
<?php
|
|
|
|
interface a extends Exception { }
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: a cannot implement Exception - it is not an interface in %s on line %d
|