comparison gcc/testsuite/g++.dg/ext/has_nothrow_copy-5.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 // PR c++/36872
2 // { dg-do run }
3 #include <cassert>
4
5 struct S {
6 S (const S&) throw ();
7 S (int)
8 #if __cplusplus <= 201402L
9 throw (int) // { dg-warning "deprecated" "" { target { c++11 && { ! c++17 } } } }
10 #endif
11 ;
12 };
13
14 int main ()
15 {
16 assert (__has_nothrow_copy (S));
17 }