repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git]
/
main
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-noexcept.C
blob
dbadaa8e3d217729c32062e55e51b4f277aa5c33
1
// { dg-do compile { target c++11 } }
2
3
template<class T>
4
struct is_funny {
5
static constexpr bool value = false;
6
};
7
8
template<class T>
9
constexpr T value(T t) noexcept(is_funny<T>::value) { return t; } // Line 7
10
11
constexpr bool ok = noexcept(value(42));
12
13
static_assert(ok, "Assertion failure");