blob: 7d5d13ea37ddaab3f2bcee5a15a84df48e856be9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
--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
|