c++: hash table ICE with variadic alias [PR105003]
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ice20.C
blobe2d4853a28438feb6bcd6df1a4ef339bb88b49e0
1 // PR c++/78645
2 // { dg-do compile { target c++11 } }
4 typedef bool (*Function)(int);
5 constexpr bool check(int x, Function p) { return p(x); }  // { dg-message "in .constexpr. expansion of" }
7 static_assert(check(2, check), "");  // { dg-error "conversion|constant|in .constexpr. expansion of" }