aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.other/sizeof2.C
blob: cb3c9bb721f7113b7b4d1d8d7e76f764842f3daf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// { dg-do assemble  }
// Origin: Mark Mitchell <mark@codesourcery.com>

struct S
{
  int j;
  int i[2]; // { dg-error "" "" { xfail *-*-* } } non-static data member
};

void f ()
{
  sizeof (S::j);
  sizeof (S::i[0]); //  { dg-error "" "" { xfail *-*-* } } used here
}