diff options
author | Dmitry Stogov <dmitry@php.net> | 2007-11-06 07:29:41 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2007-11-06 07:29:41 +0000 |
commit | e860d95d24a80213d863fa30dd6d18da7e78bf1f (patch) | |
tree | 13bb84e7b7d1e41e61711cc81fdcbd67b617fca4 /Zend/tests/bug42859.phpt | |
parent | 449ec5eee654a6c705d8881cc40da0a80a340bd0 (diff) | |
download | php-git-e860d95d24a80213d863fa30dd6d18da7e78bf1f.tar.gz |
T_IMPORT -> T_USE
Diffstat (limited to 'Zend/tests/bug42859.phpt')
-rwxr-xr-x | Zend/tests/bug42859.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/tests/bug42859.phpt b/Zend/tests/bug42859.phpt index 6464f9b4c7..475c583465 100755 --- a/Zend/tests/bug42859.phpt +++ b/Zend/tests/bug42859.phpt @@ -5,8 +5,8 @@ Bug #42859 import always conflicts with internal classes namespace Foo; class Ex {} -import Blah::Exception; -import Blah::Ex; +use Blah::Exception; +use Blah::Ex; ?> --EXPECTF-- Fatal error: Import name 'Ex' conflicts with defined class in %sbug42859.php on line 6
\ No newline at end of file |