diff options
Diffstat (limited to 'Zend/tests/ns_060.phpt')
-rw-r--r-- | Zend/tests/ns_060.phpt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Zend/tests/ns_060.phpt b/Zend/tests/ns_060.phpt index cc86d0e087..16c8024f00 100644 --- a/Zend/tests/ns_060.phpt +++ b/Zend/tests/ns_060.phpt @@ -3,21 +3,21 @@ --FILE-- <?php namespace Foo; -use Bar::A as B; +use Bar\A as B; class A {} $a = new B; $b = new A; echo get_class($a)."\n"; echo get_class($b)."\n"; namespace Bar; -use Foo::A as B; +use Foo\A as B; $a = new B; $b = new A; echo get_class($a)."\n"; echo get_class($b)."\n"; class A {} --EXPECT-- -Bar::A -Foo::A -Foo::A -Bar::A +Bar\A +Foo\A +Foo\A +Bar\A |