summaryrefslogtreecommitdiff
path: root/Zend/tests/access_modifiers_013.phpt
blob: f9b72c1f52aa8825c79daa512c692427bfb754fa (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