blob: 6268ee292072305c9a9626512d0e7417e9668163 [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));
}