c++/24367: Infinite recursion of typedef substitution
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.cp / pr9067.cc
CommitLineData
99903ae3
CM
1struct B;
2
3struct A {
4 static B b;
5};
6
7struct B {
8 A a;
9};
10
11B A::b;
12B b;
13
14int main(int,char **)
15{
16 return 0;
17}
This page took 1.045434 seconds and 4 git commands to generate.