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--
13Fatal error: Unsupported operand types in %sconstant_expressions_exceptions.inc on line 2
14