summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/init6.C
blob: a684ae107402253cf9d36d41538a9ae3e79187f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Test for default-initialization of POD-structs in functional cast notation.

struct foo { int a[10]; };

int main()
{
  foo f = foo();
  int r = 0;
  for (int i = 0; i < 10; ++i)
    r |= f.a[i];
  return r;
}