summaryrefslogtreecommitdiff
path: root/test/manual/cedet/tests/testnsp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/manual/cedet/tests/testnsp.cpp')
-rw-r--r--test/manual/cedet/tests/testnsp.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/manual/cedet/tests/testnsp.cpp b/test/manual/cedet/tests/testnsp.cpp
new file mode 100644
index 00000000000..012dc660600
--- /dev/null
+++ b/test/manual/cedet/tests/testnsp.cpp
@@ -0,0 +1,29 @@
+// Test NSP (Name space parent)
+//
+// Test dereferencing parents based on local parent scope.
+//
+// Derived from data David Engster provided.
+
+namespace nsp {
+
+ class rootclass {
+ public:
+ int fromroot() {};
+ };
+
+}
+
+namespace nsp {
+ class childclass : public rootclass {
+ public:
+ int fromchild() {};
+ };
+}
+
+void myfcn_not_in_ns (void) {
+ nsp::childclass test;
+
+ test.// -1-
+ ; // #1# ( "fromchild" "fromroot" )
+}
+