1--TEST--
2importing const with same name but different case
3--FILE--
4<?php
5
6namespace {
7    use const foo\bar;
8    use const foo\BAR;
9}
10
11?>
12--EXPECT--
13