15 lines
233 B
Plaintext
15 lines
233 B
Plaintext
|
|
--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
|