summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.target/s390/pr102024-6.C
blob: 9dd506e59c878a19850afcebc2c70acd9675c4ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PR target/102024
// { dg-do compile }

struct S { int :0; float a; };
void foo (struct S x);

void
bar (void)
{
  struct S s = { 0.0f };
  foo (s);	// { dg-message "with zero-width bit fields members changed in GCC 12" }
}