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