summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/constexpr-throw.C
blob: f1ef9dc7d0dc257311b01f35f03c122b70a92861 (plain)
1
2
3
4
5
6
7
8
// { dg-options -std=c++0x }

constexpr int may_throw(bool decide) {
	return decide ? 42 : throw -1; // { dg-error "throw" }
}

constexpr int x = may_throw(false); // { dg-message "may_throw" }
constexpr int y = may_throw(true);