blob: e2d4853a28438feb6bcd6df1a4ef339bb88b49e0 (
plain)
1
2
3
4
5
6
7
|
// PR c++/78645
// { dg-do compile { target c++11 } }
typedef bool (*Function)(int);
constexpr bool check(int x, Function p) { return p(x); } // { dg-message "in .constexpr. expansion of" }
static_assert(check(2, check), ""); // { dg-error "conversion|constant|in .constexpr. expansion of" }
|