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, 0 insertions, 29 deletions
diff --git a/test/manual/cedet/tests/testnsp.cpp b/test/manual/cedet/tests/testnsp.cpp
deleted file mode 100644
index 012dc660600..00000000000
--- a/test/manual/cedet/tests/testnsp.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-// 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" )
-}
-