summaryrefslogtreecommitdiff
path: root/tests/classes/interface_instantiate.phpt
blob: 310dc8800d8945e0e8e2329f0bb13487459f71a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
ZE2 An interface cannot be instantiated
--SKIPIF--
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
--FILE--
<?php

interface if_a {
	function f_a();
}
	
$t = new if_a();

?>
--EXPECTF--
Fatal error: Uncaught EngineException: Cannot instantiate interface if_a in %s:%d
Stack trace:
#0 {main}
  thrown in %s on line %d