OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [constexpr-ptrsub.C] - Blame information for rev 717

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 693 jeremybenn
// PR c++/51489
2
// DR 1313
3
// { dg-options "-std=c++0x" }
4
 
5
struct array
6
{
7
  constexpr array() :x(0) {}
8
  constexpr int const* begin() { return &x; }
9
  int x;
10
};
11
constexpr array aa;
12
constexpr auto b = aa.begin();
13
static_assert(b-b == 0, "compiles just fine");
14
static_assert(aa.begin()-aa.begin() == 0, "compiler thinks it's not a constant expression");

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.