mirror of
https://github.com/php/php-src.git
synced 2024-12-15 04:45:03 +08:00
12 lines
302 B
PHP
12 lines
302 B
PHP
--TEST--
|
|
Test user code implementing Throwable results in fatal error
|
|
--CREDITS--
|
|
Aaron Piotrowski <aaron@icicle.io>
|
|
--FILE--
|
|
<?php
|
|
class Failure implements Throwable {}
|
|
?>
|
|
--EXPECTF--
|
|
|
|
Fatal error: Class Failure cannot implement interface Throwable, extend Exception or Error instead in %s on line %d
|