1// { dg-do assemble  }
2
3struct A { A() { a = 2; } int a; };
4
5int f1 () {
6  struct A { A() { a = 2; } int a; };
7  A aa;
8  return aa.a;
9}
10