diff options
author | Marcus Boerger <helly@php.net> | 2008-11-04 15:58:55 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2008-11-04 15:58:55 +0000 |
commit | 7126de4912d9d4c7499deb1f9239980400aa7ec7 (patch) | |
tree | dc1bbf251d26825d2f65f599a6139044effdbc48 /Zend/tests/ns_004.phpt | |
parent | 6ca3ad3f41fd44b6f00adb9692d5503a33ecd290 (diff) | |
download | php-git-7126de4912d9d4c7499deb1f9239980400aa7ec7.tar.gz |
- Next step in namespaces, using / as namespace separator.
Diffstat (limited to 'Zend/tests/ns_004.phpt')
-rwxr-xr-x | Zend/tests/ns_004.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/tests/ns_004.phpt b/Zend/tests/ns_004.phpt index 2aa4a809d9..792367cdf6 100755 --- a/Zend/tests/ns_004.phpt +++ b/Zend/tests/ns_004.phpt @@ -2,7 +2,7 @@ 004: Name conflict (php name) --FILE-- <?php -namespace test::ns1; +namespace test\ns1; echo get_class(new Exception()),"\n"; --EXPECT-- |