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

struct S { float a; int : 0; };
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" }
}