PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / abi / empty18.C
blobbe69c6a2115b8b4681846ac2884287afd9fd566e
1 // PR c++/60336
2 // { dg-do run { target { { i?86-*-* x86_64-*-* } && { ! { ia32 } } } } }
3 // { dg-options "-Wabi=11 -x c" }
4 // { dg-additional-sources "empty18a.c" }
5 // { dg-prune-output "command line option" }
7 #include "empty18.h"
8 extern "C" void fun(struct dummy, struct foo);
10 int main()
12   struct dummy d;
13   struct foo f = { -1, -2, -3, -4, -5 };
15   fun(d, f);
16   return 0;