1 // { dg-do assemble  }
2 // Origin: Mark Mitchell <mark@codesourcery.com>
3 
4 struct E {};
5 
f()6 void f () {
7   E e1, e2;
8   e1 = e2; // We should not warn about this statement, even though no
9            // code is generated for it.
10 }
11