Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr79410.C
blob: d5df56bb393f8e39dcb408eaebcd897e6edf142a [
file
] [
log
] [
blame
]
struct
duration
{
long
val
;
static
constexpr
duration max
()
{
return
{};
}
};
struct
S
{
duration max
=
duration
::
max
();
};
void
Ice
(
S
&
s
)
{
s
=
{};
}