summaryrefslogtreecommitdiff
path: root/tests/classes/abstract_final.phpt
blob: 70aece06fd90845e67e208b19a7c74279de9dcfb (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