blob: 4834fa3e7a71c14f6fd30fc824ae16e3cd41fbbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--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
|