2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / warn / Wunused-1.C
blob60ceb4f076d3593bc4008c4a7afc2d0be386c80e
1 // Test whether -Wunused handles empty classes the same as non-empty.
2 // { dg-do compile }
3 // { dg-options "-Wunused" }
5 struct A {};
6 struct B { char c; };
8 void foo ()
10   struct A a0, a1;
11   struct B b0, b1 = { 25 };
13   a0 = a1;      // { dg-bogus "value computed is not used" }
14   b0 = b1;