Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-throw.C
blob: 5666629acae9fba6dca8c902fa823449075d3636 [
file
] [
log
] [
blame
]
// { 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
);