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

class fail {
	final abstract function show();
}

echo "Done\n"; // Shouldn't be displayed
?>
--EXPECTF--

Fatal error: Cannot use the final modifier on an abstract class member in %s