blob: c65b40e0d5f4514f8dfbf18adb6bb86a7310af70 (
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
|