blob: 3f1c3111abda90936c7de5012e1bd3aebc8bfe4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
Prevent abstract and final in the same class declaration
--FILE--
<?php
final abstract class C {
private function priv() { }
}
?>
--EXPECTF--
Fatal error: Cannot use the final modifier on an abstract class in %s on line %d
|