1 /* Test DWARF namespace support.
2 This test case is based on GDB testsuite test case. */
3 /* { dg-do compile } */
17 int AAA::inA::fum (int i)
39 int AAA::A_xyzq (int x)
44 char AAA::xyzq (char c)
50 int BBB::B_xyzq (int x)
55 char BBB::xyzq (char c)
60 char BBB::CCC::xyzq (char c)
65 char BBB::Class::xyzq (char c)
195 // NOTE: carlton/2003-04-23: I'm listing the expressions that I
196 // plan to have GDB try to print out, just to make sure that the
197 // compiler and I agree which ones should be legal! It's easy
198 // to screw up when testing the boundaries of namespace stuff.
239 c1 = AAA::xyzq ('x');
240 c1 = BBB::CCC::xyzq ('m');
248 y = AAA::A_xyzq (33);