1struct A
2{
3  int i;
4};
5
6A a1 = { 1 };			// ok
7A a2 = { a1 };			// { dg-error "cannot convert" }
8