diff options
author | Tom Tromey <tromey@redhat.com> | 2009-02-03 01:09:01 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2009-02-03 01:09:01 +0000 |
commit | 52e44b43981ff9373fa7cec285ebe4f5662f5f53 (patch) | |
tree | b7d20513b2e623d415b1b60c6e7737b15bebc1e0 /gdb/testsuite/gdb.cp/pr9594.cc | |
parent | 1c71341a8f5470b0873e57fb7bb7641a8e1d436d (diff) | |
download | binutils-gdb-52e44b43981ff9373fa7cec285ebe4f5662f5f53.tar.gz |
Fix ChangeLog to point to the correct bug, PR gdb/9594.
gdb/testsuite
* gdb.cp/cpcompletion.exp: Name the test "pr9594".
* gdb.cp/pr2489.cc: Rename...
* gdb.cp/pr9594.cc: ... to this.
Diffstat (limited to 'gdb/testsuite/gdb.cp/pr9594.cc')
-rw-r--r-- | gdb/testsuite/gdb.cp/pr9594.cc | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.cp/pr9594.cc b/gdb/testsuite/gdb.cp/pr9594.cc new file mode 100644 index 00000000000..bb7e1d6e227 --- /dev/null +++ b/gdb/testsuite/gdb.cp/pr9594.cc @@ -0,0 +1,51 @@ + +class Base +{ +public: + virtual int get_foo () { return 1; } + int base_function_only () { return 2; } +}; + +class Foo : public Base +{ + +private: + int foo_value; + +public: + Foo () { foo_value = 0;} + Foo (int i) { foo_value = i;} + ~Foo () { } + void set_foo (int value); + int get_foo (); + + // Something similar to a constructor name. + void Foofoo (); + + bool operator== (const Foo &other) { return foo_value == other.foo_value; } +}; + +void Foo::set_foo (int value) +{ + foo_value = value; +} + +int Foo::get_foo () +{ + return foo_value; +} + +void Foo::Foofoo () +{ +} + +int main () +{ + // Anonymous struct with method. + struct { + int get() { return 5; } + } a; + Foo foo1; + foo1.set_foo (42); // Set breakpoint here. + return 0; +} |