1--TEST-- 2Error suppression should have no impact on uncaught exceptions 3--FILE-- 4<?php 5 6function abc() { 7 throw new Error('Example Exception'); 8} 9 10@abc(); 11 12?> 13--EXPECTF-- 14Fatal error: Uncaught Error: Example Exception in %s:%d 15Stack trace: 16#0 %s(%d): abc() 17#1 {main} 18 thrown in %s on line %d 19