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