1--TEST--
2errmsg: arrays are not allowed in class constants
3--FILE--
4<?php
5
6class test {
7 const TEST = array(1,2,3);
8}
9
10var_dump(test::TEST);
11
12echo "Done\n";
13?>
14--EXPECTF--
15array(3) {
16 [0]=>
17 int(1)
18 [1]=>
19 int(2)
20 [2]=>
21 int(3)
22}
23Done
24