mirror of
https://github.com/php/php-src.git
synced 2024-12-19 06:50:17 +08:00
8 lines
214 B
PHP
8 lines
214 B
PHP
--TEST--
|
|
Constant Expressions with unsupported operands 001
|
|
--FILE--
|
|
<?php
|
|
const T = array(1,2) - array(0);
|
|
--EXPECTF--
|
|
Fatal error: Unsupported operand types in %sconstant_expressions_exceptions_001.php on line 2
|