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