mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
99903ae39e
* cp-valprint.c (cp_print_value_fields) Fix use of obstacks. cp_print_static_field) Fix use of obstacks. * gdb.cp/pr9067.exp: New * gdb.cp/pr9067.cc: New * gdb.cp/Makefile.in (EXECUTABLES): Add pr9067
18 lines
114 B
C++
18 lines
114 B
C++
struct B;
|
|
|
|
struct A {
|
|
static B b;
|
|
};
|
|
|
|
struct B {
|
|
A a;
|
|
};
|
|
|
|
B A::b;
|
|
B b;
|
|
|
|
int main(int,char **)
|
|
{
|
|
return 0;
|
|
}
|