1--TEST-- 2Trying to inherit a class in an interface 3--FILE-- 4<?php 5 6interface a extends Exception { } 7 8?> 9--EXPECTF-- 10Fatal error: a cannot implement Exception - it is not an interface in %s on line %d 11