1 // PR c++/36870
2 // { dg-do "run" }
3 #include <cassert>
4 
5 struct S { S (const S&); };
6 
7 bool f ();
8 
main()9 int main ()
10 {
11   assert (__has_nothrow_copy (S) == f ());
12 }
13 
S(const S &)14 S::S (const S&) { }
15 
f()16 bool f () { return __has_nothrow_copy (S); }
17