summaryrefslogtreecommitdiff
path: root/Zend/tests/access_modifiers_007.phpt
blob: 26779e6e688723dd1ec0e610cb68efbe01898e81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
abstract final methods errmsg
--FILE--
<?php

class test {
	final abstract function foo();
}

echo "Done\n";
?>
--EXPECTF--	
Fatal error: Cannot use the final modifier on an abstract class member in %s on line %d