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

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

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