aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/constexpr-ptrsub.C
blob: 18648d92d2e86640cd6b63d8141460f028f4ebf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// PR c++/51489
// DR 1313
// { dg-do compile { target c++11 } }

struct array
{
  constexpr array() :x(0) {}
  constexpr int const* begin() { return &x; }
  int x;
};
constexpr array aa;
constexpr auto b = aa.begin();
static_assert(b-b == 0, "compiles just fine");
static_assert(aa.begin()-aa.begin() == 0, "compiler thinks it's not a constant expression");