repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-sizeof2.C
blob
8676ae40b61b6beb6d193f8d0bef0f1576a5ccb6
1
// PR c++/90825 - endless recursion when evaluating sizeof.
2
// { dg-do compile { target c++11 } }
3
4
class address {
5
char host_[63];
6
public:
7
static constexpr unsigned buffer_size() noexcept { return sizeof(host_); }
8
};
9
10
template <class Archive>
11
void load()
12
{
13
char host[address::buffer_size()];
14
}