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
/
noexcept80.C
blob
3e90af747e2ba99fc03d004724126b2cb024c5a3
1
// PR c++/110106
2
// { dg-do compile { target c++11 } }
3
4
template<int> struct S
5
{
6
};
7
8
struct G {
9
G(S<0>);
10
};
11
12
void y(S<0> s) noexcept(noexcept(G{s}));