summaryrefslogtreecommitdiff
path: root/Zend/tests/const_eval_and.phpt
blob: 90917bade531b8f614dec176741f1a66868f4380 (plain)
1
2
3
4
5
6
7
8
9
--TEST--
Incorrect constant evaluation of and/or (OSS-Fuzz #19255)
--FILE--
<?php
const C = 0 && __namespace__;
var_dump(C);
?>
--EXPECT--
bool(false)