Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / ext / stmtexpr6.C
blobd2518a64a38907c537da89c4ac64aaddb21101ca
1 // { dg-do run }
2 // { dg-options "" }
4 int a[128];
6 int main() {
7   // Check that array-to-pointer conversion occurs in a
8   // statement-expression.
9   if (sizeof (({ a; })) != sizeof (int *))
10     return 1;