(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp2a/
bit-cast8.C
// PR c++/98469
// { dg-do compile { target c++20 } }
// { dg-options "-Wall" }

struct S { int s; };

S
foo ()
{
  return __builtin_bit_cast (S, 0);
}