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