1--TEST-- 2Constant Expressions with unsupported operands 002 3--FILE-- 4<?php 5try { 6 require("constant_expressions_exceptions.inc"); 7} catch (Error $e) { 8 echo "\nException: " . $e->getMessage() . " in " , $e->getFile() . " on line " . $e->getLine() . "\n"; 9} 10?> 11DONE 12--EXPECTF-- 13Exception: Unsupported operand types: array - array in %s on line %d 14DONE 15