summaryrefslogtreecommitdiff
path: root/Zend/tests/ns_092.phpt
diff options
context:
space:
mode:
authorMárcio Almada <marcio3w@gmail.com>2015-01-30 19:54:37 -0300
committerMárcio Almada <marcio3w@gmail.com>2015-03-07 17:59:48 -0300
commit344fc25b1267d7232ea1c30ea5fabf4788b2aed2 (patch)
treeeff98afe921b2185df9c2720b3bf072f0183aa05 /Zend/tests/ns_092.phpt
parent52b20b0b46a1d44ebd769855128c6b884abf6136 (diff)
downloadphp-git-344fc25b1267d7232ea1c30ea5fabf4788b2aed2.tar.gz
require trailing T_NS_SEPARATOR #1005
Diffstat (limited to 'Zend/tests/ns_092.phpt')
-rw-r--r--Zend/tests/ns_092.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/ns_092.phpt b/Zend/tests/ns_092.phpt
index aff8c973c5..c69ada91e2 100644
--- a/Zend/tests/ns_092.phpt
+++ b/Zend/tests/ns_092.phpt
@@ -13,20 +13,20 @@ namespace Foo\Bar {
}
namespace Fiz\Biz\Buz {
- use function Foo\Bar {
+ use function Foo\Bar\{
fiz,
biz,
buz as boz,
A // <- this one must fail
};
- use const Foo\Bar {
+ use const Foo\Bar\{
FOO as FOZ,
BAR,
B // <- this one must fail
};
- use Foo\Bar { A, B, const BAR as BOZ };
+ use Foo\Bar\{ A, B, const BAR as BOZ };
function buz(){ echo __FUNCTION__,"\n"; }
const FOO = 100;