summaryrefslogtreecommitdiff
path: root/Zend/tests/ns_027.inc
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/ns_027.inc')
-rw-r--r--Zend/tests/ns_027.inc11
1 files changed, 11 insertions, 0 deletions
diff --git a/Zend/tests/ns_027.inc b/Zend/tests/ns_027.inc
new file mode 100644
index 0000000..3823818
--- /dev/null
+++ b/Zend/tests/ns_027.inc
@@ -0,0 +1,11 @@
+<?php
+namespace Foo\Bar;
+
+class Foo {
+ function __construct() {
+ echo __CLASS__,"\n";
+ }
+ static function Bar() {
+ echo __CLASS__,"\n";
+ }
+}