blob: 45a926960511fc6ee27dad9bfd8694c345095100 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
Trying to throw exception of an interface
--FILE--
<?php
interface a { }
throw new a();
?>
--EXPECTF--
Fatal error: Cannot instantiate interface a in %s on line %d
|