Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp2a
/
no_unique_address12.C
blob: 761d20865160b76900c2b6a253d1152b814b6b84 [
file
] [
log
] [
blame
]
// PR c++/98994
// { dg-do compile { target c++20 } }
struct
empty
{};
union
U
{
constexpr
U
():
a
()
{
}
[[
no_unique_address
]]
empty a
;
};
constexpr
U u
;