summaryrefslogtreecommitdiff
path: root/Zend/tests/ns_065.inc
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/ns_065.inc')
-rw-r--r--Zend/tests/ns_065.inc9
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";
+}