Automatic date update in version.in
[binutils-gdb/blckswan.git] / gdb / testsuite / gdb.cp / pr9594.cc
blob54ddaafc0ca027cd49394c9c5ae06711c833c42b
2 class Base
4 public:
5 virtual int get_foo () { return 1; }
6 int base_function_only () { return 2; }
7 };
9 class Foo : public Base
12 private:
13 int foo_value;
15 public:
16 Foo () { foo_value = 0;}
17 Foo (int i) { foo_value = i;}
18 ~Foo () { }
19 void set_foo (int value);
20 int get_foo ();
22 // Something similar to a constructor name.
23 void Foofoo ();
25 bool operator== (const Foo &other) { return foo_value == other.foo_value; }
28 void Foo::set_foo (int value)
30 foo_value = value;
33 int Foo::get_foo ()
35 return foo_value;
38 void Foo::Foofoo ()
42 namespace Test_NS {
44 int foo;
45 int bar;
47 namespace Nested {
49 int qux;
51 } /* namespace Nested */
53 } /* namespace Test_NS */
55 int main ()
57 // Anonymous struct with method.
58 struct {
59 int get() { return 5; }
60 } a;
61 Foo foo1;
62 foo1.set_foo (42); // Set breakpoint here.
63 a.get(); // Prevent compiler from throwing 'a' away.
64 return 0;