1// Build don't link:
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