summaryrefslogtreecommitdiff
path: root/tests/classes/final_abstract.phpt
blob: 229ae896b042ade7f89c37d121dce3e1fe1392b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
ZE2 A final method cannot be abstract
--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