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

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

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