summaryrefslogtreecommitdiff
path: root/Zend/tests/use_function/no_conflict_with_classes.phpt
blob: bde94afb03b9d2b3226f778690249146246e759f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
"use function" should not conflict with class names
--FILE--
<?php

namespace Foo;

class Bar {}

use function bar;

?>
===DONE===
--EXPECT--
===DONE===