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
/
noexcept18.C
blob
e851b8600517a4ae377d1a6bf14c39d7ffdec87b
1
// PR c++/54207
2
// { dg-do compile { target c++11 } }
3
4
typedef bool B;
5
constexpr B foo () { return true; }
6
7
void
8
bar () noexcept (foo ())
9
{
10
}