summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/constexpr-ice16.C
blob: 112415b655bfaa3e57606c22cb3ce02f2ed9513b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// PR c++/66635
// { dg-do compile { target c++11 } }

#include <cassert>

struct Foo {
    constexpr Foo(const unsigned i) : val(i) {}
    constexpr Foo operator-(const Foo &rhs) const {
      return assert(val >= rhs.val), Foo(val - rhs.val); // { dg-error "call to non-.constexpr." }
    }
    unsigned val;
};

constexpr Foo foo(Foo(1) - Foo(2)); // { dg-message "in .constexpr. expansion of " }