xref: /php-src/Zend/tests/errmsg_009.phpt (revision f8d79582)
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