mirror of
https://github.com/php/php-src.git
synced 2024-12-14 04:16:30 +08:00
13 lines
164 B
PHP
13 lines
164 B
PHP
--TEST--
|
|
Allow self and parent in use function statement
|
|
--FILE--
|
|
<?php
|
|
|
|
namespace {
|
|
use function self as foo;
|
|
use function parent as bar;
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|