blob: 4330edd29414594215dae8e1583c49c2d65972d5 [file] [log] [blame]
// { dg-do "run" }
#include <cassert>
struct S {
S (S&) throw ();
S (const S&, int) throw (int);
};
int main ()
{
assert (__has_nothrow_copy (S));
}