diff options
Diffstat (limited to 'gdb/testsuite/gdb.cp/ovsrch3.cc')
-rw-r--r-- | gdb/testsuite/gdb.cp/ovsrch3.cc | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.cp/ovsrch3.cc b/gdb/testsuite/gdb.cp/ovsrch3.cc index e6e38a4507b..a7d9551a1fb 100644 --- a/gdb/testsuite/gdb.cp/ovsrch3.cc +++ b/gdb/testsuite/gdb.cp/ovsrch3.cc @@ -18,11 +18,21 @@ #include "ovsrch.h" void -A::outer::foo (int a) const +A::outer::foo (int a_param) const { } void -A::B::inner::foo (int a) const +A::B::inner::foo (int a_param) const +{ +} + +void +A::outer::hibob (int a_param) const +{ +} + +void +A::B::inner::hibob (int a_param) const { } |