summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/constexpr-ptrsub.C
blob: bccec73bb0b7b87d3683de5b54a471791bfed2c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// PR c++/51489
// DR 1313
// { dg-options "-std=c++0x" }

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");