summaryrefslogtreecommitdiff
path: root/tests/classes/interface_instantiate.phpt
blob: c568bbe855ef08d9c7d3748e84081063a4fc3f02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
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