blob: a85224c3abcc980ad5950b2bd07b72784f4612ed [file] [log] [blame]
// { dg-do "run" }
// { dg-options "-std=c++0x" }
#include <cassert>
struct S {
S (const S&) throw ();
S (S&&) throw (int);
};
int main ()
{
assert (__has_nothrow_copy (S));
}