summaryrefslogtreecommitdiff
path: root/Zend/tests/constant_expressions_dynamic.phpt
blob: 21c9216cc1927a9cee08279f43996f51661f68cb (plain)
1
2
3
4
5
6
7
8
9
10
11
--TEST--
Dynamic Constant Expressions
--FILE--
<?php
const FOO = 1;
const BAR = FOO | 2;

echo BAR;
?>
--EXPECTF--
3