Revert change to gdb.cp/ovldbreak.exp
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / pr-1210.cc
1 class A
2 {
3 };
4
5 class B : virtual public A
6 {
7 };
8
9 class C : public A
10 {
11 protected:
12 B myB;
13 };
14
15 int main()
16 {
17 C *obj = new C();
18 return 0;
19 }
This page took 0.031352 seconds and 4 git commands to generate.