Fortran: Fix PR 47485.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-sizeof2.C
blob8676ae40b61b6beb6d193f8d0bef0f1576a5ccb6
1 // PR c++/90825 - endless recursion when evaluating sizeof.
2 // { dg-do compile { target c++11 } }
4 class address {
5   char host_[63];
6 public:
7   static constexpr unsigned buffer_size() noexcept { return sizeof(host_); }
8 };
10 template <class Archive>
11 void load()
13   char host[address::buffer_size()];