repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
constexpr-noexcept5.C
blob
7b0c83599543ed37a2f05d27ec3e7a245e182692
1
// { dg-do compile { target c++11 } }
2
3
struct booleable {
4
bool data;
5
constexpr explicit operator bool() { return data; }
6
};
7
8
constexpr booleable truthy_func() { return {true}; }
9
10
void funky() noexcept(truthy_func()) {}
11
12
int main() {
13
funky();
14
return 0;
15
}