(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.target/
s390/
pr102024-6.C
// 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" }
}