summaryrefslogtreecommitdiff
path: root/Zend/tests/constants_004.phpt
blob: 69369aa3d9631696fd565c94794d25f5bcee46f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Trying to redeclare constant inside namespace
--FILE--
<?php

namespace foo;

const foo = 1;
const foo = 2;

?>
--EXPECTF--
Notice: Constant foo\foo already defined in %s on line %d