summaryrefslogtreecommitdiff
path: root/Zend/tests/access_modifiers_006.phpt
blob: 102276aba19ccf4566acee1510be62ab0e4f60e5 (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