summaryrefslogtreecommitdiff
path: root/tests/classes/final_abstract.phpt
blob: 66f5c87a6f96928e31d9198027937f6c401a5533 (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