xref: /PHP-5.5/Zend/tests/errmsg_009.phpt (revision 0f0fe9c9)
1--TEST--
2errmsg: multiple access type modifiers are not allowed (properties)
3--FILE--
4<?php
5
6class test {
7	public private $var;
8}
9
10echo "Done\n";
11?>
12--EXPECTF--
13Fatal error: Multiple access type modifiers are not allowed in %s on line %d
14