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 = {};
}