(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
torture/
pr79410.C
struct duration {
  long val;
  static constexpr duration max() { return {}; }
};
struct S {
  duration max = duration::max();
};
void Ice(S& s) {
  s = {};
}