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

struct S {
    S (const S&) throw ();
    S (S&&)
#if __cplusplus <= 201402L
    throw (int)			// { dg-warning "deprecated" "" { target { ! c++17 } } }
#endif
    ;
};

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