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

class if_a {
	abstract final function err();
}

?>
--EXPECTF--
Fatal error: Cannot use the final modifier on an abstract class member in %s on line %d