Daily bump.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr118532.C
blobf734373b05e45a63a3825ed4ca5d10fa3233b66f
1 // PR c++/118532
2 // { dg-do compile { target c++11 } }
4 struct S {
5   S (int, int, int);
6 #define I8 int, int, int, int, int, int, int, int
7 #define I64 I8, I8, I8, I8, I8, I8, I8, I8
8   S (I64, I64, I64, I64, I8);
9 };
11 void
12 foo (S &)
16 int
17 main ()
19   S s = {
20 #undef I8
21 #define I8 1, 2, 3, 4, 5, 6, 7, 8
22     I64, I64, I64, I64, I8
23   };
24   foo (s);