blob: e933506b8a16e10550bc154245d282ec97c354c5 (
plain)
1
2
3
4
5
6
7
|
// { dg-options -std=c++0x }
// We decided in Rapperswil that it's OK if any value of decide can produce
// a constant expression.
constexpr int may_throw(bool decide) {
return decide ? 42 : throw -1;
}
|