2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / torture / pr79410.C
blobd5df56bb393f8e39dcb408eaebcd897e6edf142a
1 struct duration {
2   long val;
3   static constexpr duration max() { return {}; }
4 };
5 struct S {
6   duration max = duration::max();
7 };
8 void Ice(S& s) {
9   s = {};