summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/rfg18.C
blob: 53c3dd1628f7c52d616172e829ef3989867f9596 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Any expression may be explicitly converted to type void.
// Build don't link:

struct S { int m[10]; } object;
struct S f () { return object; }
 
void
test ()
{
  (void) f().m;         /* OK - cast to void; see constraints in 3.8.1 */
}