summaryrefslogtreecommitdiff
path: root/Zend/tests/use_const/case_sensivity.phpt
blob: 1977daa93bb9aca07084a0375a0282a35b080199 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
importing const with same name but different case
--FILE--
<?php

namespace {
    use const foo\bar;
    use const foo\BAR;
}

?>
--EXPECT--