repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
strub: enable conditional support
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr79410.C
blob
d5df56bb393f8e39dcb408eaebcd897e6edf142a
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 = {};
10
}