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
/
ext
/
has_nothrow_copy-7.C
blob
10891b6b59279b02c2ff413dbdbae3f8767819da
1
// { dg-do run { target c++11 } }
2
#include <cassert>
3
4
struct S {
5
S (const S&) throw ();
6
S (S&&) throw (int);
7
};
8
9
int main ()
10
{
11
assert (__has_nothrow_copy (S));
12
}