blob: e933506b8a16e10550bc154245d282ec97c354c5 [file] [log] [blame]
// { 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;
}