* gdb.c++/hang1.C, gdb.c++/hang2.C, gdb.c++/hang.H,

gdb.c++/hang.exp: New test.
This commit is contained in:
Jim Blandy
2002-05-02 07:03:53 +00:00
parent cf17c188f5
commit eb7f1c487a
5 changed files with 141 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
struct A
{
struct B *b_ptr_in_a;
};
struct C
{
struct B
{
int member_of_B_in_C;
};
};