FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / rfg18.C
blob53c3dd1628f7c52d616172e829ef3989867f9596
1 // Any expression may be explicitly converted to type void.
2 // Build don't link:
4 struct S { int m[10]; } object;
5 struct S f () { return object; }
6  
7 void
8 test ()
10   (void) f().m;         /* OK - cast to void; see constraints in 3.8.1 */