php-8.0.30-src/Zend/tests/use_function/no_conflict_with_classes.phpt

16 lines
162 B
PHP

--TEST--
"use function" should not conflict with class names
--FILE--
<?php
namespace Foo;
class Bar {}
use function bar;
?>
===DONE===
--EXPECT--
===DONE===