summaryrefslogtreecommitdiff
path: root/tests/classes/abstract_final.phpt
blob: a82bfff227d652a2955bcd0c56b57bd983b08a74 (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 {
	abstract final function show();
}

echo "Done\n"; // Shouldn't be displayed
?>
--EXPECTF--
Fatal error: Cannot use the final modifier on an abstract class member in %s on line %d