]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.cp/printmethod.cc
2003-08-22 Michael Chastain <mec@shout.net>
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.cp / printmethod.cc
1 /* Create some objects, and try to print out their methods. */
2
3 class A {
4 public:
5 virtual void virt() {};
6 void nonvirt() {};
7 };
8
9 int main()
10 {
11 A *theA = new A;
12
13 return 0; // breakpoint: constructs-done
14 }