summaryrefslogtreecommitdiff
path: root/tests/classes/interface_instantiate.phpt
blob: d13bb9a6a09470f04ab02d7dd23625dbcd5fdef9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--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 {
	abstract function f_a();
}
	
$t = new if_a();

?>
--EXPECTF--
Fatal error: Cannot instantiate interface if_a in %s on line %d