mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
eb7f1c487a
gdb.c++/hang.exp: New test.
13 lines
99 B
C
13 lines
99 B
C
struct A
|
|
{
|
|
struct B *b_ptr_in_a;
|
|
};
|
|
|
|
struct C
|
|
{
|
|
struct B
|
|
{
|
|
int member_of_B_in_C;
|
|
};
|
|
};
|