summaryrefslogtreecommitdiff
path: root/tests/classes/interface_method_final.phpt
blob: 42783c6f126a8a03c8d065e7ce86993ded790ab8 (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