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