* test/manual/cedet/integ_src/globalref/src/Manager.cc: 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
+#include "Util.hh"
+#include "Manager.hh"
+
+//
+// This contains source using namespaces that are used in the test,
+// but with an impl that we aren't searching for.
+//
+namespace play { namespace prod {
+
+Manager(const int param) {
+ printf("Inside Manager ctor. myUtilFunc returned: %d\n", play::prod::myUtilFunc(param));
+}
+
+}}