1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/tests/classes/constants_error_002.phpt

13 lines
205 B
PHP

--TEST--
Error case: class constant as an array
--FILE--
<?php
class myclass
{
const myConst = array();
}
?>
--EXPECTF--
Fatal error: Arrays are not allowed in class constants in %s on line 4