aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/has_nothrow_copy-7.C
blob: 10891b6b59279b02c2ff413dbdbae3f8767819da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// { dg-do run { target c++11 } }
#include <cassert>

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

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