PR c++/60336
[official-gcc.git] / gcc / testsuite / g++.dg / abi / pr60336-8.C
bloba1ffb64ef02aa5587422a699b0aa0dd8eab84dcb
1 // { dg-do compile }
2 // { dg-options "-O2 -Wabi=11" }
4 struct dummy { struct{} a[7][3]; };
6 extern void test1 (struct dummy, ...);
7 extern void (*test2) (struct dummy, ...);
9 void
10 foo ()
12   struct dummy a0;
13   test1 (a0, 42); // { dg-warning "ABI" "" { target { { i?86-*-* x86_64-*-* } && { ! { ia32 } } } } }
14   test2 (a0, 42); // { dg-warning "ABI" "" { target { { i?86-*-* x86_64-*-* } && { ! { ia32 } } } } }