mirror of
https://github.com/php/php-src.git
synced 2024-12-18 14:30:35 +08:00
ded3d984c6
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
10 lines
101 B
PHP
10 lines
101 B
PHP
--TEST--
|
|
059: Constant arrays
|
|
--FILE--
|
|
<?php
|
|
const C = array();
|
|
var_dump(C);
|
|
--EXPECT--
|
|
array(0) {
|
|
}
|