1 // { dg-do compile }
2 
3 struct A { int i;  A();  A(const A&); };
4 
bar()5 void bar()
6 {
7     A a;
8     for ( ;; a=A() ) ;
9 }
10