summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/pr60336-8.C
blob: 38b6d344a8afbcd75c75ca70a48e9971df6e9b65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// { dg-do compile }
// { dg-options "-O2 -Wabi=9" }

struct dummy { struct{} a[7][3]; };

extern void test1 (struct dummy, ...);
extern void (*test2) (struct dummy, ...);

void
foo ()
{
  struct dummy a0;
  test1 (a0, 1); // { dg-warning "empty" }
  test2 (a0, 1); // { dg-warning "empty" }
}