summaryrefslogtreecommitdiff
path: root/Zend/tests/access_modifiers_005.phpt
blob: 7780cf4ca69b8437bdebdf58cf4f0c9cf475f56e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
using multiple access modifiers (final methods)
--FILE--
<?php

class test {
	final final function foo() {
	}
}

echo "Done\n";
?>
--EXPECTF--
Fatal error: Multiple final modifiers are not allowed in %s on line %d