ru_php/Zend/tests/use_function/self_parent.phpt

13 lines
164 B
Plaintext
Raw Permalink Normal View History

--TEST--
Allow self and parent in use function statement
--FILE--
<?php
namespace {
use function self as foo;
use function parent as bar;
}
?>
--EXPECT--