summaryrefslogtreecommitdiff
path: root/Zend/tests/use_function/self_parent.phpt
blob: f1e1fa84f1de1ff11a59549375687eeca7e7ba5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
Allow self and parent in use function statement
--FILE--
<?php

namespace {
    use function self as foo;
    use function parent as bar;
}

?>
--EXPECT--