aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/constexpr-throw.C
blob: 5666629acae9fba6dca8c902fa823449075d3636 (plain)
1
2
3
4
5
6
7
8
// { dg-do compile { target c++11 } }

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);