PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / init / pr70501.C
blob901b3c1b5a29fa4439a7d8e28e89b29a8b253cf1
1 /* { dg-options "" } Not pedantic */
3 typedef int v4si __attribute__ ((vector_size (16)));
5 struct S { v4si v; };
7 void
8 fn2 (int i, int j)
10   struct S s = { .v = i <= j + (v4si){(1, 2)} };