diff options
Diffstat (limited to 'Zend/tests/ns_065.inc')
-rw-r--r-- | Zend/tests/ns_065.inc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Zend/tests/ns_065.inc b/Zend/tests/ns_065.inc new file mode 100644 index 0000000..963a74e --- /dev/null +++ b/Zend/tests/ns_065.inc @@ -0,0 +1,9 @@ +<?php +namespace X\Y; +function foo() { + echo __FUNCTION__."\n"; +} +namespace X\Z; +function foo() { + echo __FUNCTION__."\n"; +} |