blob: 076f8a31ff645c66e2fbb238b558f011f5389d99 [file] [log] [blame]
// { dg-do run { target c++11 } }
#include <cassert>
struct S {
S (const S&) throw ();
S (S&&)
#if __cplusplus <= 201402L
throw (int) // { dg-warning "deprecated" "" { target { ! c++17 } } }
#endif
;
};
int main ()
{
assert (__has_nothrow_copy (S));
}