* test/manual/cedet/integ_src/globalref/inc/Util.hh: These test files
contributed by Barry OReilly, modified for use in the automated tests
for CEDET, and with additional comments. inc/Util.hh, src/Util.cc:
Search symbol both in and outside of namespaces.
--- /dev/null
+#pragma once
+//
+// This file contains the symbols that are searched from in the globalref test.
+//
+
+namespace play { namespace prod {
+
+ // This sym is in some namespaces.
+ int myUtilFunc(const int param);
+
+}}
+
+// This sym is outside of all namespaces.
+int myUtilFuncNoNS(const int param);
+
+//End