mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
14 lines
247 B
PHP
14 lines
247 B
PHP
--TEST--
|
|
using multiple access modifiers (attributes)
|
|
--FILE--
|
|
<?php
|
|
|
|
class test {
|
|
static public public static final public final $var;
|
|
}
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Multiple access type modifiers are not allowed in %s on line %d
|