mirror of
https://github.com/php/php-src.git
synced 2024-11-26 03:16:33 +08:00
14 lines
239 B
Plaintext
14 lines
239 B
Plaintext
|
--TEST--
|
||
|
errmsg: multiple access type modifiers are not allowed (properties)
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
class test {
|
||
|
public private $var;
|
||
|
}
|
||
|
|
||
|
echo "Done\n";
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
Fatal error: Multiple access type modifiers are not allowed in %s on line %d
|