summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/has_nothrow_copy-7.C
blob: e0ecef44a2581050989881a45664eeffb76dd7d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// { dg-do run }
// { dg-options "-std=c++0x" }
#include <cassert>

struct S {
    S (const S&) throw ();
    S (S&&) throw (int);
};

int main ()
{
  assert (__has_nothrow_copy (S));
}