1 // { dg-do run  }
2 // Shows a problem with the default op= not being an implementation...
3 
4 class C {
5   int i;
6 };
7 
8 C a, b;
9 
main()10 int main() {
11   a = b;
12 }
13