aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/constexpr-potential1.C
blob: f960e3afbdfcab3e5101d41df57a295e219c4044 (plain)
1
2
3
4
5
6
7
// { dg-do compile { target c++11 } }
// 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;
}