summaryrefslogtreecommitdiff
path: root/tests/classes/interface_method_final.phpt
blob: e936b5a03a9fb56b4edbc6e6a4d29c3e0fb334fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
ZE2 An interface method cannot be final
--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